From 67f4f50a948800af11b6ab0f9a9c7fad4dee36e5 Mon Sep 17 00:00:00 2001 From: Karl Palsson Date: Wed, 8 Oct 2014 14:32:05 +0000 Subject: [PATCH] stm32: common: fix missing SPI_I2S_BASE rename regression Fix regresion from 5d4437fe43aa68a28611e9a0aecc712833230304 where somehow not all occurrences were replaced. I could swear it all compiled when I was working on it :( Reported-by: Trevor Woerner --- lib/stm32/common/spi_common_all.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/stm32/common/spi_common_all.c b/lib/stm32/common/spi_common_all.c index bb75d19c..c488d04f 100644 --- a/lib/stm32/common/spi_common_all.c +++ b/lib/stm32/common/spi_common_all.c @@ -92,7 +92,7 @@ void spi_reset(uint32_t spi_peripheral) break; #endif #if defined(SPI3_BASE) - case SPI3_I2S_BASE: + case SPI3_BASE: rcc_periph_reset_pulse(RST_SPI3); break; #endif