simplelink: dpl: Convert from Zephyr to C99 types

Convert to use C99 types as we intend to deprecate the zephyr
specific integer types.

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2020-05-27 13:10:38 -05:00 committed by Kumar Gala
parent 15b76302bf
commit aabc6a04a8
1 changed files with 2 additions and 2 deletions

View File

@ -109,8 +109,8 @@ void ClockP_setTimeout(ClockP_Handle handle, uint32_t timeout)
void ClockP_start(ClockP_Handle handle)
{
ClockP_Obj *obj = (ClockP_Obj *)handle;
s32_t timeout;
s32_t period;
int32_t timeout;
int32_t period;
__ASSERT_NO_MSG(obj->timeout /
CONFIG_SYS_CLOCK_TICKS_PER_SEC <= UINT32_MAX / 1000);