4cff79e933
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>
27 lines
790 B
Plaintext
27 lines
790 B
Plaintext
config SOC_CAMERA
|
|
tristate "SoC camera support"
|
|
depends on VIDEO_V4L2 && HAS_DMA && I2C
|
|
select VIDEOBUF2_CORE
|
|
help
|
|
SoC Camera is a common API to several cameras, not connecting
|
|
over a bus like PCI or USB. For example some i2c camera connected
|
|
directly to the data bus of an SoC.
|
|
|
|
config SOC_CAMERA_SCALE_CROP
|
|
tristate
|
|
|
|
config SOC_CAMERA_PLATFORM
|
|
tristate "platform camera support"
|
|
depends on SOC_CAMERA
|
|
help
|
|
This is a generic SoC camera platform driver, useful for testing
|
|
|
|
config VIDEO_SH_MOBILE_CEU
|
|
tristate "SuperH Mobile CEU Interface driver"
|
|
depends on VIDEO_DEV && SOC_CAMERA && HAVE_CLK
|
|
depends on ARCH_SHMOBILE || COMPILE_TEST
|
|
select VIDEOBUF2_DMA_CONTIG
|
|
select SOC_CAMERA_SCALE_CROP
|
|
---help---
|
|
This is a v4l2 driver for the SuperH Mobile CEU Interface
|