Commit aa68bf90 authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab
Browse files

media: stkwebcam: remove deprecated driver



The stkwebcam driver does not use the vb2 framework for streaming
video, instead it implements this in the driver. This is error prone,
and nobody stepped in to convert this driver to that framework.

The hardware is very old, so the decision was made to remove it
altogether.

Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@kernel.org>
parent b136c909
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -64,7 +64,6 @@ pwc Visionite VCS-UC300 0d81:1900
pwc		  Visionite VCS-UM100			  0d81:1910
s2255drv	  Sensoray 2255				  1943:2255, 1943:2257
stk1160		  STK1160 USB video capture dongle	  05e1:0408
stkwebcam	  Syntek DC1125				  174f:a311, 05e1:0501
dvb-ttusb-budget  Technotrend/Hauppauge Nova-USB devices  0b48:1003, 0b48:1004,
							  0b48:1005
dvb-ttusb_dec	  Technotrend/Hauppauge MPEG decoder	  0b48:1006
+0 −1
Original line number Diff line number Diff line
@@ -92,7 +92,6 @@ pwc USB Philips Cameras
s2250                   Sensoray 2250/2251
s2255drv                USB Sensoray 2255 video capture device
smsusb                  Siano SMS1xxx based MDTV receiver
stkwebcam               USB Syntek DC1125 Camera
tm6000-alsa             TV Master TM5600/6000/6010 audio
tm6000-dvb              DVB Support for tm6000 based TV cards
tm6000                  TV Master TM5600/6000/6010 driver
+0 −1
Original line number Diff line number Diff line
@@ -53,7 +53,6 @@ menuconfig STAGING_MEDIA_DEPRECATED
if STAGING_MEDIA_DEPRECATED
source "drivers/staging/media/deprecated/atmel/Kconfig"
source "drivers/staging/media/deprecated/saa7146/Kconfig"
source "drivers/staging/media/deprecated/stkwebcam/Kconfig"
source "drivers/staging/media/deprecated/tm6000/Kconfig"
source "drivers/staging/media/deprecated/vpfe_capture/Kconfig"
source "drivers/staging/media/deprecated/zr364xx/Kconfig"
+0 −1
Original line number Diff line number Diff line
@@ -6,7 +6,6 @@ obj-$(CONFIG_VIDEO_MAX96712) += max96712/
obj-$(CONFIG_VIDEO_MESON_VDEC)	+= meson/vdec/
obj-$(CONFIG_VIDEO_OMAP4)	+= omap4iss/
obj-$(CONFIG_VIDEO_ROCKCHIP_VDEC)	+= rkvdec/
obj-$(CONFIG_VIDEO_STKWEBCAM)	+= deprecated/stkwebcam/
obj-$(CONFIG_VIDEO_SUNXI)	+= sunxi/
obj-$(CONFIG_VIDEO_TEGRA)	+= tegra-video/
obj-$(CONFIG_VIDEO_IPU3_IMGU)	+= ipu3/
+0 −18
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only
config VIDEO_STKWEBCAM
	tristate "USB Syntek DC1125 Camera support (DEPRECATED)"
	depends on VIDEO_DEV
	depends on MEDIA_USB_SUPPORT && MEDIA_CAMERA_SUPPORT
	help
	  Say Y here if you want to use this type of camera.
	  Supported devices are typically found in some Asus laptops,
	  with USB id 174f:a311 and 05e1:0501. Other Syntek cameras
	  may be supported by the stk11xx driver, from which this is
	  derived, see <http://sourceforge.net/projects/syntekdriver/>

	  This driver is deprecated and is scheduled for removal by
	  the end of 2022. See the TODO file for more information.

	  To compile this driver as a module, choose M here: the
	  module will be called stkwebcam.
Loading