summaryrefslogtreecommitdiff
path: root/nuttx/configs/stm3220g-eval
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/configs/stm3220g-eval')
-rw-r--r--nuttx/configs/stm3220g-eval/src/up_lcd.c2
-rw-r--r--nuttx/configs/stm3220g-eval/src/up_nsh.c2
-rw-r--r--nuttx/configs/stm3220g-eval/src/up_spi.c4
3 files changed, 4 insertions, 4 deletions
diff --git a/nuttx/configs/stm3220g-eval/src/up_lcd.c b/nuttx/configs/stm3220g-eval/src/up_lcd.c
index ce406ce3d..e03c89b03 100644
--- a/nuttx/configs/stm3220g-eval/src/up_lcd.c
+++ b/nuttx/configs/stm3220g-eval/src/up_lcd.c
@@ -54,7 +54,7 @@
#include <debug.h>
#include <nuttx/arch.h>
-#include <nuttx/spi.h>
+#include <nuttx/spi/spi.h>
#include <nuttx/lcd/lcd.h>
#include <arch/board/board.h>
diff --git a/nuttx/configs/stm3220g-eval/src/up_nsh.c b/nuttx/configs/stm3220g-eval/src/up_nsh.c
index 2387348ae..afdd01798 100644
--- a/nuttx/configs/stm3220g-eval/src/up_nsh.c
+++ b/nuttx/configs/stm3220g-eval/src/up_nsh.c
@@ -46,7 +46,7 @@
#include <errno.h>
#ifdef CONFIG_STM32_SPI1
-# include <nuttx/spi.h>
+# include <nuttx/spi/spi.h>
# include <nuttx/mtd.h>
#endif
diff --git a/nuttx/configs/stm3220g-eval/src/up_spi.c b/nuttx/configs/stm3220g-eval/src/up_spi.c
index eb4ba6bc6..8d44ce0fd 100644
--- a/nuttx/configs/stm3220g-eval/src/up_spi.c
+++ b/nuttx/configs/stm3220g-eval/src/up_spi.c
@@ -44,7 +44,7 @@
#include <stdbool.h>
#include <debug.h>
-#include <nuttx/spi.h>
+#include <nuttx/spi/spi.h>
#include <arch/board/board.h>
#include "up_arch.h"
@@ -104,7 +104,7 @@ void weak_function stm32_spiinitialize(void)
* The external functions, stm32_spi1/2/3select and stm32_spi1/2/3status must be
* provided by board-specific logic. They are implementations of the select
* and status methods of the SPI interface defined by struct spi_ops_s (see
- * include/nuttx/spi.h). All other methods (including up_spiinitialize())
+ * include/nuttx/spi/spi.h). All other methods (including up_spiinitialize())
* are provided by common STM32 logic. To use this common SPI logic on your
* board:
*