From 49ebc09a52c3d3a7cd6ddde47ee2f4cebf55774b Mon Sep 17 00:00:00 2001 From: Kumar Gala Date: Thu, 22 Jun 2017 12:14:19 -0500 Subject: [PATCH] clock: stm32: Cleanup use of C99 types We introduced some see C99 types, so convert them over to the Zephyr types. Signed-off-by: Kumar Gala --- drivers/clock_control/stm32_ll_clock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clock_control/stm32_ll_clock.c b/drivers/clock_control/stm32_ll_clock.c index b0d408c616a..f43941be890 100644 --- a/drivers/clock_control/stm32_ll_clock.c +++ b/drivers/clock_control/stm32_ll_clock.c @@ -154,7 +154,7 @@ static struct clock_control_driver_api stm32_clock_control_api = { * Unconditionally switch the system clock source to HSI. */ __unused -static void stm32_clock_switch_to_hsi(uint32_t ahb_prescaler) +static void stm32_clock_switch_to_hsi(u32_t ahb_prescaler) { /* Enable HSI if not enabled */ if (LL_RCC_HSI_IsReady() != 1) {