From a4f5254cbe538bbe65bbad1aa5c5fbc55fb796dd Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 21 Jan 2016 13:48:35 -0600 Subject: [PATCH] Fix a typo introduced into the last commit --- sched/clock/clock_systimer.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sched/clock/clock_systimer.c b/sched/clock/clock_systimer.c index 650587b32a..24c92b7916 100644 --- a/sched/clock/clock_systimer.c +++ b/sched/clock/clock_systimer.c @@ -51,7 +51,7 @@ ****************************************************************************/ /* See nuttx/clock.h */ -#undef cloc_systimer32 +#undef clock_systimer32 #undef clock_systimer64 /**************************************************************************** @@ -63,7 +63,7 @@ ****************************************************************************/ /**************************************************************************** - * Name: cloc_systimer32 + * Name: clock_systimer32 * * Description: * Return the current value of the 32-bit system timer counter @@ -78,7 +78,7 @@ * ****************************************************************************/ -uint32_t cloc_systimer32(void) +uint32_t clock_systimer32(void) { #ifdef CONFIG_SCHED_TICKLESS struct timespec ts;