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:
parent
2a770165df
commit
8953db8008
1 changed files with 6 additions and 6 deletions
|
@ -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"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue