From 820a6c4e390d47e1060a5ff67026aeadbfe166e4 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Tue, 4 Sep 2018 06:54:58 -0600 Subject: [PATCH] configs/b-l475e-iot01a/src: Fix copy paste errors in names: stm32_bringup->stm32l4_bringup. Noted by Freemans Goden. --- configs/b-l475e-iot01a/src/b-l475e-iot01a.h | 2 +- configs/b-l475e-iot01a/src/stm32_boot.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/b-l475e-iot01a/src/b-l475e-iot01a.h b/configs/b-l475e-iot01a/src/b-l475e-iot01a.h index f6e2beda0d0..3d10e5f5f89 100644 --- a/configs/b-l475e-iot01a/src/b-l475e-iot01a.h +++ b/configs/b-l475e-iot01a/src/b-l475e-iot01a.h @@ -142,7 +142,7 @@ ****************************************************************************/ /**************************************************************************** - * Name: stm32_bringup + * Name: stm32l4_bringup * * Description: * Called either by board_intialize() if CONFIG_BOARD_INITIALIZE or by diff --git a/configs/b-l475e-iot01a/src/stm32_boot.c b/configs/b-l475e-iot01a/src/stm32_boot.c index 085398fff31..32316e49129 100644 --- a/configs/b-l475e-iot01a/src/stm32_boot.c +++ b/configs/b-l475e-iot01a/src/stm32_boot.c @@ -98,6 +98,6 @@ void board_initialize(void) { /* Perform board initialization */ - (void)stm32_bringup(); + (void)stm32l4_bringup(); } #endif /* CONFIG_BOARD_INITIALIZE */