mirror of
https://github.com/torvalds/linux.git
synced 2026-04-21 16:23:59 -04:00
Remove dependencies on HAS_DMA where a Kconfig symbol depends on another
symbol that implies HAS_DMA, and, optionally, on "|| COMPILE_TEST".
In most cases this other symbol is an architecture or platform specific
symbol, or PCI.
Generic symbols and drivers without platform dependencies keep their
dependencies on HAS_DMA, to prevent compiling subsystems or drivers that
cannot work anyway.
This simplifies the dependencies, and allows to improve compile-testing.
Note:
- The various VIDEOBUF*DMA* symbols had to loose their dependencies on
HAS_DMA, as they are selected by several individual drivers.
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Reviewed-by: Mark Brown <broonie@kernel.org>
Acked-by: Robin Murphy <robin.murphy@arm.com>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
28 lines
1008 B
Plaintext
28 lines
1008 B
Plaintext
config DVB_C8SECTPFE
|
|
tristate "STMicroelectronics C8SECTPFE DVB support"
|
|
depends on PINCTRL && DVB_CORE && I2C
|
|
depends on ARCH_STI || ARCH_MULTIPLATFORM || COMPILE_TEST
|
|
select FW_LOADER
|
|
select DEBUG_FS
|
|
select DVB_LNBP21 if MEDIA_SUBDRV_AUTOSELECT
|
|
select DVB_STV090x if MEDIA_SUBDRV_AUTOSELECT
|
|
select DVB_STB6100 if MEDIA_SUBDRV_AUTOSELECT
|
|
select DVB_STV6110 if MEDIA_SUBDRV_AUTOSELECT
|
|
select DVB_STV0900 if MEDIA_SUBDRV_AUTOSELECT
|
|
select DVB_STV0367 if MEDIA_SUBDRV_AUTOSELECT
|
|
select MEDIA_TUNER_TDA18212 if MEDIA_SUBDRV_AUTOSELECT
|
|
|
|
---help---
|
|
This adds support for DVB front-end cards connected
|
|
to TS inputs of STiH407/410 SoC.
|
|
|
|
The driver currently supports C8SECTPFE's TS input block,
|
|
memdma engine, and HW PID filtering.
|
|
|
|
Supported DVB front-end cards are:
|
|
- STMicroelectronics DVB-T B2100A (STV0367 + TDA18212)
|
|
- STMicroelectronics DVB-S/S2 STV0903 + STV6110 + LNBP24 board
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called c8sectpfe.
|