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

Commit c52af799 authored by Jean-Francois Moine's avatar Jean-Francois Moine Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (13916): gspca - ov534/ov534_9: Split the ov534 subdriver.



The two sensors ov772x and ov965x have too much differences.

Signed-off-by: default avatarJean-Francois Moine <moinejf@free.fr>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent de2d1549
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -190,8 +190,7 @@ spca500 06bd:0404 Agfa CL20
spca500		06be:0800	Optimedia
sunplus		06d6:0031	Trust 610 LCD PowerC@m Zoom
spca506		06e1:a190	ADS Instant VCD
ov534		06f8:3002	Hercules Blog Webcam
ov534		06f8:3003	Hercules Dualpix HD Weblog
ov534_9		06f8:3003	Hercules Dualpix HD Weblog
sonixj		06f8:3004	Hercules Classic Silver
sonixj		06f8:3008	Hercules Deluxe Optical Glass
pac7302		06f8:3009	Hercules Classic Link
+13 −3
Original line number Diff line number Diff line
@@ -95,15 +95,25 @@ config USB_GSPCA_OV519
	  module will be called gspca_ov519.

config USB_GSPCA_OV534
	tristate "OV534 USB Camera Driver"
	tristate "OV534 OV772x USB Camera Driver"
	depends on VIDEO_V4L2 && USB_GSPCA
	help
	  Say Y here if you want support for cameras based on the OV534 chip.
	  (e.g. Sony Playstation EYE)
	  Say Y here if you want support for cameras based on the OV534 chip
	  and sensor OV772x (e.g. Sony Playstation EYE)

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

config USB_GSPCA_OV534_9
	tristate "OV534 OV965x USB Camera Driver"
	depends on VIDEO_V4L2 && USB_GSPCA
	help
	  Say Y here if you want support for cameras based on the OV534 chip
	  and sensor OV965x (e.g. Hercules Dualpix)

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

config USB_GSPCA_PAC207
	tristate "Pixart PAC207 USB Camera Driver"
	depends on VIDEO_V4L2 && USB_GSPCA
+2 −0
Original line number Diff line number Diff line
@@ -8,6 +8,7 @@ obj-$(CONFIG_USB_GSPCA_MARS) += gspca_mars.o
obj-$(CONFIG_USB_GSPCA_MR97310A) += gspca_mr97310a.o
obj-$(CONFIG_USB_GSPCA_OV519)    += gspca_ov519.o
obj-$(CONFIG_USB_GSPCA_OV534)    += gspca_ov534.o
obj-$(CONFIG_USB_GSPCA_OV534_9)  += gspca_ov534_9.o
obj-$(CONFIG_USB_GSPCA_PAC207)   += gspca_pac207.o
obj-$(CONFIG_USB_GSPCA_PAC7302)  += gspca_pac7302.o
obj-$(CONFIG_USB_GSPCA_PAC7311)  += gspca_pac7311.o
@@ -40,6 +41,7 @@ gspca_mars-objs := mars.o
gspca_mr97310a-objs := mr97310a.o
gspca_ov519-objs    := ov519.o
gspca_ov534-objs    := ov534.o
gspca_ov534_9-objs  := ov534_9.o
gspca_pac207-objs   := pac207.o
gspca_pac7302-objs  := pac7302.o
gspca_pac7311-objs  := pac7311.o
+104 −1138

File changed.

Preview size limit exceeded, changes collapsed.

+1477 −0

File added.

Preview size limit exceeded, changes collapsed.