timer: xtensa_sys: Cleanup use of C99 types

We introduced some see C99 types, so convert them over to the Zephyr
types.

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2017-06-22 12:14:01 -05:00 committed by Anas Nashif
commit fb56b39cdd

View file

@ -41,7 +41,7 @@
#define GET_TIMER_CURRENT_TIME(void) XT_RSR_CCOUNT()
#define XTENSA_RSR(sr) \
({uint32_t v; \
({u32_t v; \
__asm__ volatile ("rsr." #sr " %0" : "=a"(v)); \
v; })
#define XTENSA_WSR(sr, v) \