Skip to content

Commit

Permalink
clock: stm32: Cleanup use of C99 types
Browse files Browse the repository at this point in the history
We introduced some see C99 types, so convert them over to the Zephyr
types.

Signed-off-by: Kumar Gala <[email protected]>
  • Loading branch information
galak authored and Anas Nashif committed Jun 22, 2017
1 parent fb56b39 commit 49ebc09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/clock_control/stm32_ll_clock.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 49ebc09

Please sign in to comment.