summaryrefslogtreecommitdiff
path: root/nuttx/configs/teensy/src
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/configs/teensy/src')
-rw-r--r--nuttx/configs/teensy/src/up_spi.c4
-rw-r--r--nuttx/configs/teensy/src/up_usbmsc.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/nuttx/configs/teensy/src/up_spi.c b/nuttx/configs/teensy/src/up_spi.c
index a4eed9836..828e30dbe 100644
--- a/nuttx/configs/teensy/src/up_spi.c
+++ b/nuttx/configs/teensy/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 <avr/io.h>
@@ -144,7 +144,7 @@ void weak_function at90usb_spiinitialize(void)
* Description:
* The external functions, avr_spiselect and avr_spistatus 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
+ * of the SPI interface defined by struct spi_ops_s (see include/nuttx/spi/spi.h). All
* other methods (including up_spiinitialize()) are provided by common AVR logic.
* To use this common SPI logic on your board:
*
diff --git a/nuttx/configs/teensy/src/up_usbmsc.c b/nuttx/configs/teensy/src/up_usbmsc.c
index 0b944eda3..2743dfbfb 100644
--- a/nuttx/configs/teensy/src/up_usbmsc.c
+++ b/nuttx/configs/teensy/src/up_usbmsc.c
@@ -46,7 +46,7 @@
#include <debug.h>
#include <errno.h>
-#include <nuttx/spi.h>
+#include <nuttx/spi/spi.h>
#include <nuttx/mmcsd.h>
#include "at90usb_internal.h"