aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-06-03 14:48:41 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-06-03 14:48:41 +0000
commit4534a30db6dac3628452969f766f99e1b81b88dd (patch)
tree448dd0d240b952378c8b13dee03d093fa049317e
parent52cac10dbce9b24df71712ed15430387e57dd01e (diff)
downloadChibiOS-4534a30db6dac3628452969f766f99e1b81b88dd.tar.gz
ChibiOS-4534a30db6dac3628452969f766f99e1b81b88dd.tar.bz2
ChibiOS-4534a30db6dac3628452969f766f99e1b81b88dd.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5805 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r--os/hal/platforms/SPC5xx/DSPI_v1/spi_lld.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/os/hal/platforms/SPC5xx/DSPI_v1/spi_lld.h b/os/hal/platforms/SPC5xx/DSPI_v1/spi_lld.h
index 75af1e731..dd92d06e3 100644
--- a/os/hal/platforms/SPC5xx/DSPI_v1/spi_lld.h
+++ b/os/hal/platforms/SPC5xx/DSPI_v1/spi_lld.h
@@ -437,16 +437,16 @@ typedef void (*spicallback_t)(SPIDriver *spip);
*/
typedef struct {
/**
- * @brief Operation complete callback.
+ * @brief Operation complete callback.
*/
spicallback_t end_cb;
/* End of the mandatory fields.*/
/**
- * @brief The chip select line port.
+ * @brief The chip select line port.
*/
ioportid_t ssport;
/**
- * @brief The chip select line pad number.
+ * @brief The chip select line pad number.
*/
uint16_t sspad;
/**
@@ -468,23 +468,23 @@ typedef struct {
*/
struct SPIDriver {
/**
- * @brief Driver state.
+ * @brief Driver state.
*/
spistate_t state;
/**
- * @brief Current configuration data.
+ * @brief Current configuration data.
*/
const SPIConfig *config;
#if SPI_USE_WAIT || defined(__DOXYGEN__)
/**
- * @brief Waiting thread.
+ * @brief Waiting thread.
*/
Thread *thread;
#endif /* SPI_USE_WAIT */
#if SPI_USE_MUTUAL_EXCLUSION || defined(__DOXYGEN__)
#if CH_USE_MUTEXES || defined(__DOXYGEN__)
/**
- * @brief Mutex protecting the bus.
+ * @brief Mutex protecting the bus.
*/
Mutex mutex;
#elif CH_USE_SEMAPHORES