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 <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2017-06-22 12:14:19 -05:00 committed by Anas Nashif
parent fb56b39cdd
commit 49ebc09a52

View File

@ -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) {