From 4534a30db6dac3628452969f766f99e1b81b88dd Mon Sep 17 00:00:00 2001 From: gdisirio Date: Mon, 3 Jun 2013 14:48:41 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5805 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/platforms/SPC5xx/DSPI_v1/spi_lld.h | 14 +++++++------- 1 file 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 -- cgit v1.2.3