summaryrefslogtreecommitdiffstats
path: root/drivers/staging/media/Kconfig
diff options
context:
space:
mode:
authorHans Verkuil <hverkuil-cisco@xs4all.nl>2022-08-10 13:54:45 +0200
committerMauro Carvalho Chehab <mchehab@kernel.org>2022-08-29 16:35:03 +0200
commit1943fb1e50d11053ccc58932bfe1217377a5bf47 (patch)
tree219d382e61ea73498b9e53262d44ed0c72659b5c /drivers/staging/media/Kconfig
parentf068a6cec0fbdc479a9776923eb772d76c3948cd (diff)
downloadlinux-1943fb1e50d11053ccc58932bfe1217377a5bf47.tar.bz2
media: staging/media: add a STAGING_MEDIA_DEPRECATED option
Add a kernel config option to build deprecated media drivers that are scheduled for removal. Move stkwebcam to the deprecated directory to make it clear that this driver is deprecated. Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
Diffstat (limited to 'drivers/staging/media/Kconfig')
-rw-r--r--drivers/staging/media/Kconfig18
1 files changed, 16 insertions, 2 deletions
diff --git a/drivers/staging/media/Kconfig b/drivers/staging/media/Kconfig
index ce379cae01b9..cc21b983f954 100644
--- a/drivers/staging/media/Kconfig
+++ b/drivers/staging/media/Kconfig
@@ -38,10 +38,24 @@ source "drivers/staging/media/omap4iss/Kconfig"
source "drivers/staging/media/rkvdec/Kconfig"
-source "drivers/staging/media/stkwebcam/Kconfig"
-
source "drivers/staging/media/sunxi/Kconfig"
source "drivers/staging/media/tegra-video/Kconfig"
+menuconfig STAGING_MEDIA_DEPRECATED
+ bool "Media staging drivers (DEPRECATED)"
+ default n
+ help
+ This option enables deprecated media drivers that are
+ scheduled for future removal from the kernel.
+
+ If you wish to work on these drivers to prevent their removal,
+ then contact the linux-media@vger.kernel.org mailing list.
+
+ If in doubt, say N here.
+
+if STAGING_MEDIA_DEPRECATED
+source "drivers/staging/media/deprecated/stkwebcam/Kconfig"
+endif
+
endif