mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
36d54dc0c8
SND_KIRKWOOD_SOC_T5325 selects SND_SOC_ALC5623, but SND_SOC_ALC5623 needs CONFIG_I2C. So we need to make SND_KIRKWOOD_SOC_T5325 depend on I2C, otherwise I got below build error if CONFIG_I2C is not selected. CC sound/soc/codecs/alc5623.o sound/soc/codecs/alc5623.c: In function 'alc5623_i2c_probe': sound/soc/codecs/alc5623.c:1002: error: implicit declaration of function 'i2c_smbus_read_word_data' sound/soc/codecs/alc5623.c:1009: error: implicit declaration of function 'i2c_smbus_read_byte_data' sound/soc/codecs/alc5623.c: In function 'alc5623_modinit': sound/soc/codecs/alc5623.c:1096: error: implicit declaration of function 'i2c_add_driver' sound/soc/codecs/alc5623.c: In function 'alc5623_modexit': sound/soc/codecs/alc5623.c:1108: error: implicit declaration of function 'i2c_del_driver' make[3]: *** [sound/soc/codecs/alc5623.o] Error 1 make[2]: *** [sound/soc/codecs] Error 2 make[1]: *** [sound/soc] Error 2 make: *** [sound] Error 2 Also fix the same issue for SND_KIRKWOOD_SOC_OPENRD. Signed-off-by: Axel Lin <axel.lin@gmail.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
30 lines
891 B
Text
30 lines
891 B
Text
config SND_KIRKWOOD_SOC
|
|
tristate "SoC Audio for the Marvell Kirkwood chip"
|
|
depends on ARCH_KIRKWOOD
|
|
help
|
|
Say Y or M if you want to add support for codecs attached to
|
|
the Kirkwood I2S interface. You will also need to select the
|
|
audio interfaces to support below.
|
|
|
|
config SND_KIRKWOOD_SOC_I2S
|
|
tristate
|
|
|
|
config SND_KIRKWOOD_SOC_OPENRD
|
|
tristate "SoC Audio support for Kirkwood Openrd Client"
|
|
depends on SND_KIRKWOOD_SOC && (MACH_OPENRD_CLIENT || MACH_OPENRD_ULTIMATE)
|
|
depends on I2C
|
|
select SND_KIRKWOOD_SOC_I2S
|
|
select SND_SOC_CS42L51
|
|
help
|
|
Say Y if you want to add support for SoC audio on
|
|
Openrd Client.
|
|
|
|
config SND_KIRKWOOD_SOC_T5325
|
|
tristate "SoC Audio support for HP t5325"
|
|
depends on SND_KIRKWOOD_SOC && MACH_T5325 && I2C
|
|
select SND_KIRKWOOD_SOC_I2S
|
|
select SND_SOC_ALC5623
|
|
help
|
|
Say Y if you want to add support for SoC audio on
|
|
the HP t5325 thin client.
|
|
|