arch: arm: soc: stm32f4xx: Add LL include file also for I2S case

stm32f4xx_ll_spi.h include file is shared between I2S and SPI
(controller is same). So we need to include it even when I2S_STM32
is enabled.

Signed-off-by: Armando Visconti <armando.visconti@st.com>
This commit is contained in:
Armando Visconti 2018-08-08 14:29:45 +02:00 committed by Carles Cufí
commit 411dc003ee

View file

@ -47,7 +47,7 @@
#include <stm32f4xx_ll_i2c.h>
#endif
#ifdef CONFIG_SPI_STM32
#if defined(CONFIG_SPI_STM32) || defined(CONFIG_I2S_STM32)
#include <stm32f4xx_ll_spi.h>
#endif