Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

[media] sn9c102: remove deprecated driver



During the media summit meeting in Edinburgh it was decided to move this
driver to staging as the first step to removing it altogether.

Most webcams covered by this driver are now supported by gspca. Nobody has the
hardware or is willing to convert the remaining devices to gspca.

This driver needs a major overhaul to have it conform to the latest frameworks
and compliancy tests.

Without hardware, however, this is next to impossible. Given the fact that
this driver seems to be pretty much unused (it has been removed from Fedora
several versions ago and nobody complained about that), we decided to drop
this driver.

Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Cc: Luca Risolia <luca.risolia@studio.unibo.it>
Acked-by: default avatarHans de Goede <hdegoede@redhat.com>
Signed-off-by: default avatarMauro Carvalho Chehab <m.chehab@samsung.com>
parent 7979fcaa
Loading
Loading
Loading
Loading
+0 −9
Original line number Diff line number Diff line
@@ -9499,15 +9499,6 @@ L: netdev@vger.kernel.org
S:	Maintained
F:	drivers/net/usb/smsc95xx.*

USB SN9C1xx DRIVER
M:	Luca Risolia <luca.risolia@studio.unibo.it>
L:	linux-usb@vger.kernel.org
L:	linux-media@vger.kernel.org
T:	git git://linuxtv.org/media_tree.git
W:	http://www.linux-projects.org
S:	Maintained
F:	drivers/staging/media/sn9c102/

USB SUBSYSTEM
M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
L:	linux-usb@vger.kernel.org
+0 −2
Original line number Diff line number Diff line
@@ -35,8 +35,6 @@ source "drivers/staging/media/msi3101/Kconfig"

source "drivers/staging/media/omap24xx/Kconfig"

source "drivers/staging/media/sn9c102/Kconfig"

source "drivers/staging/media/solo6x10/Kconfig"

source "drivers/staging/media/omap4iss/Kconfig"
+0 −1
Original line number Diff line number Diff line
@@ -8,7 +8,6 @@ obj-$(CONFIG_VIDEO_GO7007) += go7007/
obj-$(CONFIG_USB_MSI3101)	+= msi3101/
obj-$(CONFIG_VIDEO_DM365_VPFE)	+= davinci_vpfe/
obj-$(CONFIG_VIDEO_OMAP4)	+= omap4iss/
obj-$(CONFIG_USB_SN9C102)       += sn9c102/
obj-$(CONFIG_VIDEO_OMAP2)       += omap24xx/
obj-$(CONFIG_VIDEO_TCM825X)     += omap24xx/
obj-$(CONFIG_DVB_RTL2832_SDR)	+= rtl2832u_sdr/
+0 −17
Original line number Diff line number Diff line
config USB_SN9C102
	tristate "USB SN9C1xx PC Camera Controller support (DEPRECATED)"
	depends on VIDEO_V4L2 && MEDIA_USB_SUPPORT
	---help---
	  This driver is DEPRECATED, please use the gspca sonixb and
	  sonixj modules instead.

	  Say Y here if you want support for cameras based on SONiX SN9C101,
	  SN9C102, SN9C103, SN9C105 and SN9C120 PC Camera Controllers.

	  See <file:drivers/staging/media/sn9c102/sn9c102.txt> for more info.

	  If you have webcams that are only supported by this driver and not by
	  the gspca driver, then contact the linux-media mailinglist.

	  To compile this driver as a module, choose M here: the
	  module will be called sn9c102.
+0 −15
Original line number Diff line number Diff line
sn9c102-objs := sn9c102_core.o \
		sn9c102_hv7131d.o \
		sn9c102_hv7131r.o \
		sn9c102_mi0343.o \
		sn9c102_mi0360.o \
		sn9c102_mt9v111.o \
		sn9c102_ov7630.o \
		sn9c102_ov7660.o \
		sn9c102_pas106b.o \
		sn9c102_pas202bcb.o \
		sn9c102_tas5110c1b.o \
		sn9c102_tas5110d.o \
		sn9c102_tas5130d1b.o

obj-$(CONFIG_USB_SN9C102)       += sn9c102.o
Loading