summaryrefslogtreecommitdiff
path: root/nuttx/configs/pic32-starterkit/src/up_spi.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/configs/pic32-starterkit/src/up_spi.c')
-rw-r--r--nuttx/configs/pic32-starterkit/src/up_spi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/nuttx/configs/pic32-starterkit/src/up_spi.c b/nuttx/configs/pic32-starterkit/src/up_spi.c
index ca14501cc..962dac33d 100644
--- a/nuttx/configs/pic32-starterkit/src/up_spi.c
+++ b/nuttx/configs/pic32-starterkit/src/up_spi.c
@@ -60,7 +60,7 @@
************************************************************************************/
/* The following enable debug output from this file (needs CONFIG_DEBUG too).
- *
+ *
* CONFIG_SPI_DEBUG - Define to enable basic SPI debug
* CONFIG_SPI_VERBOSE - Define to enable verbose SPI debug
*/
@@ -107,7 +107,7 @@ void weak_function pic32mx_sspinitialize(void)
* Description:
* These external functions must be provided by board-specific logic. They are
* implementations of the select, status, and cmddata methods of the SPI interface
- * defined by struct spi_ops_s (see include/nuttx/spi/spi.h). All other methods
+ * defined by struct spi_ops_s (see include/nuttx/spi/spi.h). All other methods
* including up_spiinitialize()) are provided by common PIC32MX logic. To use
* this common SPI logic on your board:
*
@@ -123,7 +123,7 @@ void weak_function pic32mx_sspinitialize(void)
* 3. Add a call to up_spiinitialize() in your low level application
* initialization logic
* 4. The handle returned by up_spiinitialize() may then be used to bind the
- * SPI driver to higher level logic (e.g., calling
+ * SPI driver to higher level logic (e.g., calling
* mmcsd_spislotinitialize(), for example, will bind the SPI driver to
* the SPI MMC/SD driver).
*