mirror of
https://github.com/torvalds/linux.git
synced 2026-05-02 21:42:42 -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>
20 lines
662 B
Plaintext
20 lines
662 B
Plaintext
config VIDEO_SOLO6X10
|
|
tristate "Bluecherry / Softlogic 6x10 capture cards (MPEG-4/H.264)"
|
|
depends on PCI && VIDEO_DEV && SND && I2C
|
|
select BITREVERSE
|
|
select FONT_SUPPORT
|
|
select FONT_8x16
|
|
select VIDEOBUF2_DMA_SG
|
|
select VIDEOBUF2_DMA_CONTIG
|
|
select SND_PCM
|
|
select FONT_8x16
|
|
---help---
|
|
This driver supports the Bluecherry H.264 and MPEG-4 hardware
|
|
compression capture cards and other Softlogic-based ones.
|
|
|
|
Following cards have been tested:
|
|
* Bluecherry BC-H16480A (PCIe, 16 port, H.264)
|
|
* Bluecherry BC-H04120A (PCIe, 4 port, H.264)
|
|
* Bluecherry BC-H04120A-MPCI (Mini-PCI, 4 port, H.264)
|
|
* Bluecherry BC-04120A (PCIe, 4 port, MPEG-4)
|