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

Commit 4c98834a authored by Erik Andren's avatar Erik Andren Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (10048): gspca - stv06xx: New subdriver.

parent 15f64864
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -50,6 +50,9 @@ ov519 045e:028c Micro$oft xbox cam
spca508		0461:0815	Micro Innovation IC200
sunplus		0461:0821	Fujifilm MV-1
zc3xx		0461:0a00	MicroInnovation WebCam320
stv06xx		046d:0840	QuickCam Express
stv06xx		046d:0850	LEGO cam / QuickCam Web
stv06xx		046d:0870	Dexxa WebCam USB
spca500		046d:0890	Logitech QuickCam traveler
vc032x		046d:0892	Logitech Orbicam
vc032x		046d:0896	Logitech Orbicam
+1 −0
Original line number Diff line number Diff line
@@ -18,6 +18,7 @@ menuconfig USB_GSPCA
if USB_GSPCA && VIDEO_V4L2

source "drivers/media/video/gspca/m5602/Kconfig"
source "drivers/media/video/gspca/stv06xx/Kconfig"

config USB_GSPCA_CONEX
	tristate "Conexant Camera Driver"
+1 −1
Original line number Diff line number Diff line
@@ -47,4 +47,4 @@ gspca_vc032x-objs := vc032x.o
gspca_zc3xx-objs		:= zc3xx.o

obj-$(CONFIG_USB_M5602)		+= m5602/
obj-$(CONFIG_USB_STV06XX) 	+= stv06xx/
+9 −0
Original line number Diff line number Diff line
config USB_STV06XX
	tristate "STV06XX USB Camera Driver"
	depends on USB_GSPCA
	help
	  Say Y here if you want support for cameras based on
	  the ST STV06XX chip.

	  To compile this driver as a module, choose M here: the
	  module will be called gspca_stv06xx.
+6 −0
Original line number Diff line number Diff line
obj-$(CONFIG_USB_STV06XX) += gspca_stv06xx.o

gspca_stv06xx-objs := stv06xx.o \
		      stv06xx_vv6410.o \
		      stv06xx_hdcs.o \
		      stv06xx_pb0100.o
Loading