diff --git a/drivers/periph_common/init.c b/drivers/periph_common/init.c index 3c13f15120d558c0a6e40fb78c70ceff008bd1b6..6473205fc88a148fb083f4e9f93d6d687718b962 100644 --- a/drivers/periph_common/init.c +++ b/drivers/periph_common/init.c @@ -1,5 +1,6 @@ /* * Copyright (C) 2017 Freie Universität Berlin + * 2017 Kaspar Schleiser <kaspar@schleiser.de> * * This file is subject to the terms and conditions of the GNU Lesser General * Public License v2.1. See the file LICENSE in the top level directory for more @@ -14,16 +15,19 @@ * @brief Common static peripheral driver initialization implementation * * @author Hauke Petersen <hauke.petersen@fu-berlin.de> + * @author Kaspar Schleiser <kaspar@schleiser.de> * * @} */ +#ifdef MODULE_PERIPH_SPI #include "periph/spi.h" +#endif void periph_init(void) { /* initialize configured SPI devices */ -#ifdef SPI_NUMOF +#ifdef MODULE_PERIPH_SPI for (unsigned i = 0; i < SPI_NUMOF; i++) { spi_init(SPI_DEV(i)); }