aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/src/spi.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-12-29 11:12:05 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-12-29 11:12:05 +0000
commitfe24da9fcca4967e58b25a2698c46717995de0ad (patch)
treec65c37f80160846a873d1c0f3903666b3ad9cb71 /os/hal/src/spi.c
parent2a05dca9157fe8ad58a873bd51b6115e4380e10a (diff)
downloadChibiOS-fe24da9fcca4967e58b25a2698c46717995de0ad.tar.gz
ChibiOS-fe24da9fcca4967e58b25a2698c46717995de0ad.tar.bz2
ChibiOS-fe24da9fcca4967e58b25a2698c46717995de0ad.zip
Reorganized sections in HAL files.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1473 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/src/spi.c')
-rw-r--r--os/hal/src/spi.c18
1 files changed, 17 insertions, 1 deletions
diff --git a/os/hal/src/spi.c b/os/hal/src/spi.c
index 08113a000..36bde9a3a 100644
--- a/os/hal/src/spi.c
+++ b/os/hal/src/spi.c
@@ -29,6 +29,22 @@
#if CH_HAL_USE_SPI || defined(__DOXYGEN__)
+/*===========================================================================*/
+/* Driver exported variables. */
+/*===========================================================================*/
+
+/*===========================================================================*/
+/* Driver local variables. */
+/*===========================================================================*/
+
+/*===========================================================================*/
+/* Driver local functions. */
+/*===========================================================================*/
+
+/*===========================================================================*/
+/* Driver exported functions. */
+/*===========================================================================*/
+
/**
* @brief SPI Driver initialization.
*/
@@ -255,7 +271,7 @@ void spiReleaseBus(SPIDriver *spip) {
chSemSignal(&spip->spd_semaphore);
#endif
}
-#endif /*SPI_USE_MUTUAL_EXCLUSION */
+#endif /* SPI_USE_MUTUAL_EXCLUSION */
#endif /* CH_HAL_USE_SPI */