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

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
...@@ -190,8 +190,7 @@ spca500 06bd:0404 Agfa CL20 ...@@ -190,8 +190,7 @@ spca500 06bd:0404 Agfa CL20
spca500 06be:0800 Optimedia spca500 06be:0800 Optimedia
sunplus 06d6:0031 Trust 610 LCD PowerC@m Zoom sunplus 06d6:0031 Trust 610 LCD PowerC@m Zoom
spca506 06e1:a190 ADS Instant VCD spca506 06e1:a190 ADS Instant VCD
ov534 06f8:3002 Hercules Blog Webcam ov534_9 06f8:3003 Hercules Dualpix HD Weblog
ov534 06f8:3003 Hercules Dualpix HD Weblog
sonixj 06f8:3004 Hercules Classic Silver sonixj 06f8:3004 Hercules Classic Silver
sonixj 06f8:3008 Hercules Deluxe Optical Glass sonixj 06f8:3008 Hercules Deluxe Optical Glass
pac7302 06f8:3009 Hercules Classic Link pac7302 06f8:3009 Hercules Classic Link
......
...@@ -95,15 +95,25 @@ config USB_GSPCA_OV519 ...@@ -95,15 +95,25 @@ config USB_GSPCA_OV519
module will be called gspca_ov519. module will be called gspca_ov519.
config USB_GSPCA_OV534 config USB_GSPCA_OV534
tristate "OV534 USB Camera Driver" tristate "OV534 OV772x USB Camera Driver"
depends on VIDEO_V4L2 && USB_GSPCA depends on VIDEO_V4L2 && USB_GSPCA
help help
Say Y here if you want support for cameras based on the OV534 chip. Say Y here if you want support for cameras based on the OV534 chip
(e.g. Sony Playstation EYE) and sensor OV772x (e.g. Sony Playstation EYE)
To compile this driver as a module, choose M here: the To compile this driver as a module, choose M here: the
module will be called gspca_ov534. 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 config USB_GSPCA_PAC207
tristate "Pixart PAC207 USB Camera Driver" tristate "Pixart PAC207 USB Camera Driver"
depends on VIDEO_V4L2 && USB_GSPCA depends on VIDEO_V4L2 && USB_GSPCA
......
...@@ -8,6 +8,7 @@ obj-$(CONFIG_USB_GSPCA_MARS) += gspca_mars.o ...@@ -8,6 +8,7 @@ obj-$(CONFIG_USB_GSPCA_MARS) += gspca_mars.o
obj-$(CONFIG_USB_GSPCA_MR97310A) += gspca_mr97310a.o obj-$(CONFIG_USB_GSPCA_MR97310A) += gspca_mr97310a.o
obj-$(CONFIG_USB_GSPCA_OV519) += gspca_ov519.o obj-$(CONFIG_USB_GSPCA_OV519) += gspca_ov519.o
obj-$(CONFIG_USB_GSPCA_OV534) += gspca_ov534.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_PAC207) += gspca_pac207.o
obj-$(CONFIG_USB_GSPCA_PAC7302) += gspca_pac7302.o obj-$(CONFIG_USB_GSPCA_PAC7302) += gspca_pac7302.o
obj-$(CONFIG_USB_GSPCA_PAC7311) += gspca_pac7311.o obj-$(CONFIG_USB_GSPCA_PAC7311) += gspca_pac7311.o
...@@ -40,6 +41,7 @@ gspca_mars-objs := mars.o ...@@ -40,6 +41,7 @@ gspca_mars-objs := mars.o
gspca_mr97310a-objs := mr97310a.o gspca_mr97310a-objs := mr97310a.o
gspca_ov519-objs := ov519.o gspca_ov519-objs := ov519.o
gspca_ov534-objs := ov534.o gspca_ov534-objs := ov534.o
gspca_ov534_9-objs := ov534_9.o
gspca_pac207-objs := pac207.o gspca_pac207-objs := pac207.o
gspca_pac7302-objs := pac7302.o gspca_pac7302-objs := pac7302.o
gspca_pac7311-objs := pac7311.o gspca_pac7311-objs := pac7311.o
......
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment