Skip to content

Commit 324ee29

Browse files
committed
drivers: i2s: Update drivers to use devicetree Kconfig symbol
Update I2S drivers to use DT_HAS_<compat>_ENABLED Kconfig symbol to expose the driver and enable it by default based on devicetree. We remove 'depend on' Kconfig for symbols that would be implied by the devicetree node existing. Signed-off-by: Kumar Gala <galak@kernel.org>
1 parent 8a730b8 commit 324ee29

6 files changed

+11
-6
lines changed

drivers/i2s/Kconfig.litex

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66

77
menuconfig I2S_LITEX
88
bool "Litex I2S driver"
9-
depends on SOC_RISCV32_LITEX_VEXRISCV
9+
default y
10+
depends on DT_HAS_LITEX_I2S_ENABLED
1011
help
1112
Enable Litex Inter Sound (I2S) bus driver.
1213

drivers/i2s/Kconfig.mcux

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55

66
menuconfig I2S_MCUX_SAI
77
bool "NXP MCUX I2S controller driver"
8-
depends on HAS_MCUX_I2S
8+
default y
9+
depends on DT_HAS_NXP_MCUX_I2S_ENABLED
910
select DMA
1011
help
1112
Enable I2S support on the I.MX family of processors.

drivers/i2s/Kconfig.mcux_flexcomm

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
config I2S_MCUX_FLEXCOMM
55
bool "MCUX FLEXCOMM I2S driver"
6-
depends on HAS_MCUX_FLEXCOMM
6+
default y
7+
depends on DT_HAS_NXP_LPC_I2S_ENABLED
78
select DMA
89
help
910
Enable support for mcux flexcomm i2s driver.

drivers/i2s/Kconfig.nrfx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
menuconfig I2S_NRFX
55
bool "nRF I2S nrfx driver"
6-
depends on HAS_HW_NRF_I2S
76
default y
7+
depends on DT_HAS_NORDIC_NRF_I2S_ENABLED
88
select NRFX_I2S
99
help
1010
Enable support for nrfx I2S driver for nRF MCU series.

drivers/i2s/Kconfig.sam_ssc

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55

66
menuconfig I2S_SAM_SSC
77
bool "Atmel SAM MCU family I2S (SSC) Bus Driver"
8-
depends on SOC_FAMILY_SAM
8+
default y
9+
depends on DT_HAS_ATMEL_SAM_SSC_ENABLED
910
select DMA
1011
help
1112
Enable Inter Sound (I2S) bus driver for Atmel SAM MCU family based on

drivers/i2s/Kconfig.stm32

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55

66
menuconfig I2S_STM32
77
bool "STM32 MCU I2S controller driver"
8-
depends on SOC_SERIES_STM32F4X
8+
default y
9+
depends on DT_HAS_ST_STM32_I2S_ENABLED
910
select DMA
1011
help
1112
Enable I2S support on the STM32 family of processors.

0 commit comments

Comments
 (0)