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

Commit 4f7cb883 authored by Olivier Lorin's avatar Olivier Lorin Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (12954): gspca - gl860: Addition of GL860 based webcams



- add the Genesys Logic 05e3:0503 and 05e3:f191 webcam

Signed-off-by: default avatarOlivier Lorin <o.lorin@laposte.net>
Signed-off-by: default avatarJean-Francois Moine <moinejf@free.fr>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent ba624ce4
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -173,6 +173,8 @@ ov519 05a9:8519 OmniVision
ov519		05a9:a518	D-Link DSB-C310 Webcam
sunplus		05da:1018	Digital Dream Enigma 1.3
stk014		05e1:0893	Syntek DV4000
gl860		05e3:0503	Genesys Logic PC Camera
gl860		05e3:f191	Genesys Logic PC Camera
spca561		060b:a001	Maxell Compact Pc PM3
zc3xx		0698:2003	CTX M730V built in
spca500		06bd:0404	Agfa CL20
+1 −0
Original line number Diff line number Diff line
@@ -19,6 +19,7 @@ if USB_GSPCA && VIDEO_V4L2

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

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

obj-$(CONFIG_USB_M5602)   += m5602/
obj-$(CONFIG_USB_STV06XX) += stv06xx/
obj-$(CONFIG_USB_GL860)   += gl860/
+8 −0
Original line number Diff line number Diff line
config USB_GL860
	tristate "GL860 USB Camera Driver"
	depends on VIDEO_V4L2 && USB_GSPCA
	help
	  Say Y here if you want support for cameras based on the GL860 chip.

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

gspca_gl860-objs := gl860.o \
		    gl860-mi1320.o \
		    gl860-ov2640.o \
		    gl860-ov9655.o \
		    gl860-mi2020.o

EXTRA_CFLAGS += -Idrivers/media/video/gspca
Loading