summaryrefslogtreecommitdiff
path: root/nuttx/configs/twr-k60n512
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-07-01 08:11:54 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-07-01 08:11:54 -0600
commit55f91130376b9580a9720a641e80d4049a19d639 (patch)
treea2e85a84f3c1b8f5bdf4f8121e24846f79a43831 /nuttx/configs/twr-k60n512
parent39c19d9c4ef7c134a59bfacb671032df6e3156f2 (diff)
downloadnuttx-55f91130376b9580a9720a641e80d4049a19d639.tar.gz
nuttx-55f91130376b9580a9720a641e80d4049a19d639.tar.bz2
nuttx-55f91130376b9580a9720a641e80d4049a19d639.zip
Created new directories to hold SPI-related files
Diffstat (limited to 'nuttx/configs/twr-k60n512')
-rw-r--r--nuttx/configs/twr-k60n512/src/up_spi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/configs/twr-k60n512/src/up_spi.c b/nuttx/configs/twr-k60n512/src/up_spi.c
index 074dc5cd7..afdc48f00 100644
--- a/nuttx/configs/twr-k60n512/src/up_spi.c
+++ b/nuttx/configs/twr-k60n512/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"
@@ -101,7 +101,7 @@ void weak_function kinetis_spiinitialize(void)
* The external functions, kinetis_spi1/2/3select and kinetis_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 Kinetis logic. To use this common SPI logic on your
* board:
*