1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #8958 from aabadie/pr/cpu/lm4f120

cpu/lm4f120: remove useless periph file guard
This commit is contained in:
Peter Kietzmann 2018-06-22 13:27:23 +02:00 committed by GitHub
commit 8724407686
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 9 deletions

View File

@ -27,8 +27,6 @@
#define ENABLE_DEBUG (0)
#include "debug.h"
#ifdef SPI_NUMOF
/**
* @brief Array holding one pre-initialized mutex for each SPI device
*/
@ -137,5 +135,3 @@ void spi_transfer_bytes(spi_t bus, spi_cs_t cs, bool cont,
gpio_set((gpio_t)cs);
}
}
#endif /* SPI_NUMOF */

View File

@ -29,9 +29,6 @@
#define ENABLE_DEBUG (0)
#include "debug.h"
/* guard file in case no timers are defined */
#if TIMER_NUMOF
/**
* @brief Struct holding the configuration data
* @{
@ -344,6 +341,4 @@ void isr_wtimer1a(void)
cortexm_isr_end();
}
#endif /* TIMER_1_EN */
#endif /* TIMER_NUMOF */
/** @} */