From c5f471fe44e8c0c1638d427e67151ab0ada883ed Mon Sep 17 00:00:00 2001 From: Koen Zandberg Date: Tue, 18 Aug 2020 13:32:26 +0200 Subject: [PATCH] nucleo-l152re: remove obsolete spi_divtable --- boards/nucleo-l152re/include/periph_conf.h | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/boards/nucleo-l152re/include/periph_conf.h b/boards/nucleo-l152re/include/periph_conf.h index c1454f44be..306c5cc141 100644 --- a/boards/nucleo-l152re/include/periph_conf.h +++ b/boards/nucleo-l152re/include/periph_conf.h @@ -168,28 +168,8 @@ static const pwm_conf_t pwm_config[] = { /** * @name SPI configuration - * - * @note The spi_divtable is auto-generated from - * `cpu/stm32_common/dist/spi_divtable/spi_divtable.c` * @{ */ -static const uint8_t spi_divtable[2][5] = { - { /* for APB1 @ 32000000Hz */ - 7, /* -> 125000Hz */ - 5, /* -> 500000Hz */ - 4, /* -> 1000000Hz */ - 2, /* -> 4000000Hz */ - 1 /* -> 8000000Hz */ - }, - { /* for APB2 @ 32000000Hz */ - 7, /* -> 125000Hz */ - 5, /* -> 500000Hz */ - 4, /* -> 1000000Hz */ - 2, /* -> 4000000Hz */ - 1 /* -> 8000000Hz */ - } -}; - static const spi_conf_t spi_config[] = { { .dev = SPI1,