diff options
author | Jean-Francois Moine <moinejf@free.fr> | 2009-01-07 13:09:36 +0100 |
---|---|---|
committer | Jean-Francois Moine <moinejf@free.fr> | 2009-01-07 13:09:36 +0100 |
commit | 87a6b9a42841dabe6d78f0997a1b7432363d3cf2 (patch) | |
tree | 2bce366858f64683943ce3de1016dddaf2421639 /linux/drivers/media/video/gspca/ov534.c | |
parent | 1efd156795c55b086c28f4eeab1d33ca12adfed5 (diff) | |
download | mediapointer-dvb-s2-87a6b9a42841dabe6d78f0997a1b7432363d3cf2.tar.gz mediapointer-dvb-s2-87a6b9a42841dabe6d78f0997a1b7432363d3cf2.tar.bz2 |
gspca - ov534: Disable the Hercules webcams.
From: Antonio Ospite <ospite@studenti.unina.it>
The Hercules webcam based on ov534 use different sensor than Playstation Eye,
disable them until full support is provided.
Priority: normal
Signed-off-by: Antonio Ospite <ospite@studenti.unina.it>
Signed-off-by: Jean-Francois Moine <moinejf@free.fr>
Diffstat (limited to 'linux/drivers/media/video/gspca/ov534.c')
-rw-r--r-- | linux/drivers/media/video/gspca/ov534.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/linux/drivers/media/video/gspca/ov534.c b/linux/drivers/media/video/gspca/ov534.c index 55d920caa..de0ab8e06 100644 --- a/linux/drivers/media/video/gspca/ov534.c +++ b/linux/drivers/media/video/gspca/ov534.c @@ -555,8 +555,11 @@ static const struct sd_desc sd_desc = { /* -- module initialisation -- */ static const __devinitdata struct usb_device_id device_table[] = { +#if 0 + /* these two are not supported yet, different sensors */ {USB_DEVICE(0x06f8, 0x3002)}, /* Hercules Blog Webcam */ {USB_DEVICE(0x06f8, 0x3003)}, /* Hercules Dualpix HD Weblog */ +#endif {USB_DEVICE(0x1415, 0x2000)}, /* Sony HD Eye for PS3 (SLEH 00201) */ {} }; |