tests: tickless: fix building of test

Build issues caused by commit fe882f407d
which missed camel case conversion of _TimestampOpen, _TimestampRead,
and _TimestampClose.

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2017-06-29 12:21:07 -05:00 committed by Kumar Gala
commit 8953db8008

View file

@ -58,13 +58,13 @@ typedef u32_t _timer_res_t;
#define _TIMER_ZERO 0 #define _TIMER_ZERO 0
/* timestamp routines, from timestamps.c */ /* timestamp routines, from timestamps.c */
extern void _TimestampOpen(void); extern void _timestamp_open(void);
extern u32_t _TimestampRead(void); extern u32_t _timestamp_read(void);
extern void _TimestampClose(void); extern void _timestamp_close(void);
#define _TIMESTAMP_OPEN() (_TimestampOpen()) #define _TIMESTAMP_OPEN() (_timestamp_open())
#define _TIMESTAMP_READ() (_TimestampRead()) #define _TIMESTAMP_READ() (_timestamp_read())
#define _TIMESTAMP_CLOSE() (_TimestampClose()) #define _TIMESTAMP_CLOSE() (_timestamp_close())
#else #else
#error "Unknown target" #error "Unknown target"