mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-23 13:32:50 +07:00
c81ceb58e1
The cobalt sound driver has a dependency on ALSA, but not on the PCM helper code, so this can lead to an extremely rare link error in randconfig builds: ERROR: "snd_pcm_period_elapsed" [drivers/media/pci/cobalt/cobalt.ko] undefined! ERROR: "_snd_pcm_stream_lock_irqsave" [drivers/media/pci/cobalt/cobalt.ko] undefined! ERROR: "snd_pcm_hw_constraint_integer" [drivers/media/pci/cobalt/cobalt.ko] undefined! ERROR: "snd_pcm_set_ops" [drivers/media/pci/cobalt/cobalt.ko] undefined! ERROR: "snd_pcm_stream_unlock_irqrestore" [drivers/media/pci/cobalt/cobalt.ko] undefined! ERROR: "snd_pcm_lib_ioctl" [drivers/media/pci/cobalt/cobalt.ko] undefined! ERROR: "snd_pcm_new" [drivers/media/pci/cobalt/cobalt.ko] undefined! The other audio drivers select 'SND_PCM' for this, so let's do the same. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
23 lines
676 B
Plaintext
23 lines
676 B
Plaintext
config VIDEO_COBALT
|
|
tristate "Cisco Cobalt support"
|
|
depends on VIDEO_V4L2 && I2C && VIDEO_V4L2_SUBDEV_API
|
|
depends on PCI_MSI && MTD_COMPLEX_MAPPINGS
|
|
depends on GPIOLIB || COMPILE_TEST
|
|
depends on SND
|
|
depends on MTD
|
|
select I2C_ALGOBIT
|
|
select SND_PCM
|
|
select VIDEO_ADV7604
|
|
select VIDEO_ADV7511
|
|
select VIDEO_ADV7842
|
|
select VIDEOBUF2_DMA_SG
|
|
---help---
|
|
This is a video4linux driver for the Cisco PCIe Cobalt card.
|
|
|
|
This board is sadly not available outside of Cisco, but it is
|
|
very useful as an example of a real driver that uses all the
|
|
latest frameworks and APIs.
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called cobalt.
|