diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2019-01-26 08:32:07 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2019-01-26 08:32:07 +0000 |
commit | 57d31cabcfedbab69c74cde694f8fe1ec652385d (patch) | |
tree | fefaa32d234406c79aecfd43d69be09077797593 /os/hal/templates/hal_spi_lld.h | |
parent | 2c757aacd0569a7cf824513ec34e5ed976291597 (diff) | |
download | ChibiOS-57d31cabcfedbab69c74cde694f8fe1ec652385d.tar.gz ChibiOS-57d31cabcfedbab69c74cde694f8fe1ec652385d.tar.bz2 ChibiOS-57d31cabcfedbab69c74cde694f8fe1ec652385d.zip |
MISRA-related fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12586 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'os/hal/templates/hal_spi_lld.h')
-rw-r--r-- | os/hal/templates/hal_spi_lld.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/os/hal/templates/hal_spi_lld.h b/os/hal/templates/hal_spi_lld.h index ad3939c9b..b3f180a9d 100644 --- a/os/hal/templates/hal_spi_lld.h +++ b/os/hal/templates/hal_spi_lld.h @@ -69,12 +69,16 @@ /**
* @brief Low level fields of the SPI driver structure.
*/
-#define spi_lld_driver_fields
+#define spi_lld_driver_fields \
+ /* Dummy field, it is not needed.*/ \
+ uint32_t dummy
/**
* @brief Low level fields of the SPI configuration structure.
*/
-#define spi_lld_config_fields
+#define spi_lld_config_fields \
+ /* Dummy configuration, it is not needed.*/ \
+ uint32_t dummy
/*===========================================================================*/
/* External declarations. */
|