summaryrefslogtreecommitdiff
path: root/nuttx/configs/stm32f429i-disco/src/stm32_boot.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/configs/stm32f429i-disco/src/stm32_boot.c')
-rw-r--r--nuttx/configs/stm32f429i-disco/src/stm32_boot.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/nuttx/configs/stm32f429i-disco/src/stm32_boot.c b/nuttx/configs/stm32f429i-disco/src/stm32_boot.c
index 2640c1d4b..fb17f1ca7 100644
--- a/nuttx/configs/stm32f429i-disco/src/stm32_boot.c
+++ b/nuttx/configs/stm32f429i-disco/src/stm32_boot.c
@@ -104,10 +104,6 @@ void stm32_boardinitialize(void)
#ifdef CONFIG_STM32_FSMC
stm32_enablefsmc();
#endif
-
-#ifdef CONFIG_STM32_LTDC
- up_fbinitialize();
-#endif
}
/****************************************************************************
@@ -126,6 +122,10 @@ void stm32_boardinitialize(void)
#ifdef CONFIG_BOARD_INITIALIZE
void board_initialize(void)
{
+#ifdef CONFIG_STM32_LTDC
+ up_fbinitialize();
+#endif
+
/* Perform NSH initialization here instead of from the NSH. This
* alternative NSH initialization is necessary when NSH is ran in user-space
* but the initialization function must run in kernel space.