diff options
-rw-r--r-- | os/hal/platforms/SPC5xx/DSPI_v1/spi_lld.h | 14 |
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
|