aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/media/video/gspca/sonixj.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/media/video/gspca/sonixj.c b/drivers/media/video/gspca/sonixj.c
index 9e31d1bbc678..184bb924f456 100644
--- a/drivers/media/video/gspca/sonixj.c
+++ b/drivers/media/video/gspca/sonixj.c
@@ -610,7 +610,9 @@ static const u8 ov7630_sensor_init[][8] = {
610/* win: i2c_r from 00 to 80 */ 610/* win: i2c_r from 00 to 80 */
611 {0xd1, 0x21, 0x03, 0x80, 0x10, 0x20, 0x80, 0x10}, 611 {0xd1, 0x21, 0x03, 0x80, 0x10, 0x20, 0x80, 0x10},
612 {0xb1, 0x21, 0x0c, 0x20, 0x20, 0x00, 0x00, 0x10}, 612 {0xb1, 0x21, 0x0c, 0x20, 0x20, 0x00, 0x00, 0x10},
613 {0xd1, 0x21, 0x11, 0x00, 0x48, 0xc0, 0x00, 0x10}, 613/* HDG: 0x11 was 0x00 change to 0x01 for better exposure (15 fps instead of 30)
614 0x13 was 0xc0 change to 0xc3 for auto gain and exposure */
615 {0xd1, 0x21, 0x11, 0x01, 0x48, 0xc3, 0x00, 0x10},
614 {0xb1, 0x21, 0x15, 0x80, 0x03, 0x00, 0x00, 0x10}, 616 {0xb1, 0x21, 0x15, 0x80, 0x03, 0x00, 0x00, 0x10},
615 {0xd1, 0x21, 0x17, 0x1b, 0xbd, 0x05, 0xf6, 0x10}, 617 {0xd1, 0x21, 0x17, 0x1b, 0xbd, 0x05, 0xf6, 0x10},
616 {0xa1, 0x21, 0x1b, 0x04, 0x00, 0x00, 0x00, 0x10}, 618 {0xa1, 0x21, 0x1b, 0x04, 0x00, 0x00, 0x00, 0x10},
@@ -644,7 +646,6 @@ static const u8 ov7630_sensor_init[][8] = {
644 {0xa1, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10}, 646 {0xa1, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
645 {0xb1, 0x21, 0x01, 0x80, 0x80, 0x00, 0x00, 0x10}, 647 {0xb1, 0x21, 0x01, 0x80, 0x80, 0x00, 0x00, 0x10},
646/* */ 648/* */
647 {0xa1, 0x21, 0x11, 0x00, 0x00, 0x00, 0x00, 0x10},
648 {0xa1, 0x21, 0x2a, 0x88, 0x00, 0x00, 0x00, 0x10}, 649 {0xa1, 0x21, 0x2a, 0x88, 0x00, 0x00, 0x00, 0x10},
649 {0xa1, 0x21, 0x2b, 0x34, 0x00, 0x00, 0x00, 0x10}, 650 {0xa1, 0x21, 0x2b, 0x34, 0x00, 0x00, 0x00, 0x10},
650/* */ 651/* */
@@ -2239,7 +2240,7 @@ static const __devinitdata struct usb_device_id device_table[] = {
2239 {USB_DEVICE(0x0c45, 0x613b), BSI(SN9C120, OV7660, 0x21)}, 2240 {USB_DEVICE(0x0c45, 0x613b), BSI(SN9C120, OV7660, 0x21)},
2240#endif 2241#endif
2241 {USB_DEVICE(0x0c45, 0x613c), BSI(SN9C120, HV7131R, 0x11)}, 2242 {USB_DEVICE(0x0c45, 0x613c), BSI(SN9C120, HV7131R, 0x11)},
2242/* {USB_DEVICE(0x0c45, 0x613e), BSI(SN9C120, OV7630, 0x??)}, */ 2243 {USB_DEVICE(0x0c45, 0x613e), BSI(SN9C120, OV7630, 0x21)},
2243 {USB_DEVICE(0x0c45, 0x6143), BSI(SN9C120, SP80708, 0x18)}, 2244 {USB_DEVICE(0x0c45, 0x6143), BSI(SN9C120, SP80708, 0x18)},
2244 {} 2245 {}
2245}; 2246};