mirror of
https://github.com/torvalds/linux.git
synced 2024-11-05 19:41:54 +00:00
f506513ad8
The rk3399 scans the spi_bus_type to find the rt5514 driver, but does not
actually have a Kconfig dependency on SPI, so we can end up with a link
failure:
sound/soc/codecs/snd-soc-rt5514-spi.o: In function `rt5514_spi_driver_init':
rt5514-spi.c:(.init.text+0x14): undefined reference to `__spi_register_driver'
sound/soc/codecs/snd-soc-rt5514-spi.o: In function `rt5514_spi_burst_read':
rt5514-spi.c:(.text.rt5514_spi_burst_read+0x18c): undefined reference to `spi_sync'
sound/soc/codecs/snd-soc-rt5514-spi.o: In function `rt5514_spi_burst_write':
rt5514-spi.c:(.text.rt5514_spi_burst_write+0x1b4): undefined reference to `spi_sync'
sound/soc/rockchip/snd-soc-rk3399-gru-sound.o: In function `rockchip_sound_probe':
rk3399_gru_sound.c:(.text.rockchip_sound_probe+0x128): undefined reference to `spi_bus_type'
This adds the missing dependency.
Fixes: c6eac8a36a
(ASoC: rockchip: Add machine driver for RK3399 GRU Boards)
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Tested-by: Xing Zheng <zhengxing@rock-chips.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
56 lines
2.0 KiB
Plaintext
56 lines
2.0 KiB
Plaintext
config SND_SOC_ROCKCHIP
|
|
tristate "ASoC support for Rockchip"
|
|
depends on COMPILE_TEST || ARCH_ROCKCHIP
|
|
help
|
|
Say Y or M if you want to add support for codecs attached to
|
|
the Rockchip SoCs' Audio interfaces. You will also need to
|
|
select the audio interfaces to support below.
|
|
|
|
config SND_SOC_ROCKCHIP_I2S
|
|
tristate "Rockchip I2S Device Driver"
|
|
depends on CLKDEV_LOOKUP && SND_SOC_ROCKCHIP
|
|
select SND_SOC_GENERIC_DMAENGINE_PCM
|
|
help
|
|
Say Y or M if you want to add support for I2S driver for
|
|
Rockchip I2S device. The device supports upto maximum of
|
|
8 channels each for play and record.
|
|
|
|
config SND_SOC_ROCKCHIP_SPDIF
|
|
tristate "Rockchip SPDIF Device Driver"
|
|
depends on CLKDEV_LOOKUP && SND_SOC_ROCKCHIP
|
|
select SND_SOC_GENERIC_DMAENGINE_PCM
|
|
help
|
|
Say Y or M if you want to add support for SPDIF driver for
|
|
Rockchip SPDIF transceiver device.
|
|
|
|
config SND_SOC_ROCKCHIP_MAX98090
|
|
tristate "ASoC support for Rockchip boards using a MAX98090 codec"
|
|
depends on SND_SOC_ROCKCHIP && I2C && GPIOLIB && CLKDEV_LOOKUP
|
|
select SND_SOC_ROCKCHIP_I2S
|
|
select SND_SOC_MAX98090
|
|
select SND_SOC_TS3A227E
|
|
help
|
|
Say Y or M here if you want to add support for SoC audio on Rockchip
|
|
boards using the MAX98090 codec, such as Veyron.
|
|
|
|
config SND_SOC_ROCKCHIP_RT5645
|
|
tristate "ASoC support for Rockchip boards using a RT5645/RT5650 codec"
|
|
depends on SND_SOC_ROCKCHIP && I2C && GPIOLIB && CLKDEV_LOOKUP
|
|
select SND_SOC_ROCKCHIP_I2S
|
|
select SND_SOC_RT5645
|
|
help
|
|
Say Y or M here if you want to add support for SoC audio on Rockchip
|
|
boards using the RT5645/RT5650 codec, such as Veyron.
|
|
|
|
config SND_SOC_RK3399_GRU_SOUND
|
|
tristate "ASoC support multiple codecs for Rockchip RK3399 GRU boards"
|
|
depends on SND_SOC_ROCKCHIP && I2C && GPIOLIB && CLKDEV_LOOKUP && SPI
|
|
select SND_SOC_ROCKCHIP_I2S
|
|
select SND_SOC_MAX98357A
|
|
select SND_SOC_RT5514
|
|
select SND_SOC_DA7219
|
|
select SND_SOC_RT5514_SPI
|
|
help
|
|
Say Y or M here if you want to add support multiple codecs for SoC
|
|
audio on Rockchip RK3399 GRU boards.
|