1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 06:23:53 +01:00

sys/auto_init: remove useless #ifdef

This commit is contained in:
Alexandre Abadie 2020-06-08 12:03:09 +02:00
parent f585b53d03
commit 45a862226e
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405
3 changed files with 0 additions and 16 deletions

View File

@ -17,8 +17,6 @@
* @author Alexandre Abadie <alexandre.abadie@inria.fr>
*/
#ifdef MODULE_SEMTECH_LORAMAC
#include "log.h"
#include "semtech_loramac.h"
@ -28,8 +26,4 @@ void auto_init_loramac(void)
{
semtech_loramac_init(&loramac);
}
#else
typedef int dont_be_pedantic;
#endif /* MODULE_SEMTECH_LORAMAC */
/** @} */

View File

@ -16,7 +16,6 @@
* @}
*/
#ifdef MODULE_CRYPTOAUTHLIB
#include "log.h"
#include "atca.h"
#include "atca_params.h"
@ -35,6 +34,3 @@ void auto_init_atca(void)
}
}
}
#else
typedef int dont_be_pedantic;
#endif

View File

@ -16,8 +16,6 @@
* @author Michel Rottleuthner <michel.rottleuthner@haw-hamburg.de>
*/
#ifdef MODULE_SDCARD_SPI
#include "log.h"
#include "sdcard_spi.h"
#include "sdcard_spi_params.h"
@ -50,8 +48,4 @@ void auto_init_sdcard_spi(void)
}
}
}
#else
typedef int dont_be_pedantic;
#endif /* MODULE_SDCARD_SPI */
/** @} */