mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
26cb92f7f7
This config option was added during the development of the Request API to make it easy to disable it. The Request API is now stable so it is time to drop this option altogether. Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
41 lines
997 B
Plaintext
41 lines
997 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
menuconfig V4L_TEST_DRIVERS
|
|
bool "V4L test drivers"
|
|
depends on VIDEO_DEV
|
|
|
|
if V4L_TEST_DRIVERS
|
|
|
|
config VIDEO_VIM2M
|
|
tristate "Virtual Memory-to-Memory Driver"
|
|
depends on VIDEO_DEV
|
|
select VIDEOBUF2_VMALLOC
|
|
select V4L2_MEM2MEM_DEV
|
|
select MEDIA_CONTROLLER
|
|
help
|
|
This is a virtual test device for the memory-to-memory driver
|
|
framework.
|
|
|
|
source "drivers/media/test-drivers/vicodec/Kconfig"
|
|
source "drivers/media/test-drivers/vimc/Kconfig"
|
|
source "drivers/media/test-drivers/vivid/Kconfig"
|
|
source "drivers/media/test-drivers/visl/Kconfig"
|
|
|
|
endif #V4L_TEST_DRIVERS
|
|
|
|
menuconfig DVB_TEST_DRIVERS
|
|
bool "DVB test drivers"
|
|
depends on DVB_CORE && MEDIA_SUPPORT && I2C
|
|
help
|
|
Enables DVB test drivers.
|
|
|
|
This enables the DVB test drivers. They are meant as an aid for
|
|
DVB device driver writers and developers working on userspace
|
|
media applications.
|
|
|
|
if DVB_TEST_DRIVERS
|
|
|
|
source "drivers/media/test-drivers/vidtv/Kconfig"
|
|
|
|
endif #DVB_TEST_DRIVERS
|