diff options
author | Olivier Lorin <o.lorin@laposte.net> | 2010-06-24 03:31:43 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-08-02 13:50:38 -0400 |
commit | d398c0eb62d1788726b501329abcc6fd164d1778 (patch) | |
tree | 867a3003c1db1fef8a80b64cafbcef15b3992c37 /drivers/media/video/gspca | |
parent | bff7e839da4bdc344ec789bf8ae903dfc4db20c1 (diff) |
V4L/DVB: gspca - gl860: fix for wrong 0V9655 resolution identifier name
Signed-off-by: Olivier Lorin <o.lorin@laposte.net>
Signed-off-by: Jean-François Moine <moinejf@free.fr>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/gspca')
-rw-r--r-- | drivers/media/video/gspca/gl860/gl860-ov9655.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/gspca/gl860/gl860-ov9655.c b/drivers/media/video/gspca/gl860/gl860-ov9655.c index d412694c50af..5ae9619d72a5 100644 --- a/drivers/media/video/gspca/gl860/gl860-ov9655.c +++ b/drivers/media/video/gspca/gl860/gl860-ov9655.c | |||
@@ -69,7 +69,7 @@ static u8 *tbl_640[] = { | |||
69 | "\xd0\x01\xd1\x08\xd2\xe0\xd3\x01" "\xd4\x10\xd5\x80" | 69 | "\xd0\x01\xd1\x08\xd2\xe0\xd3\x01" "\xd4\x10\xd5\x80" |
70 | }; | 70 | }; |
71 | 71 | ||
72 | static u8 *tbl_800[] = { | 72 | static u8 *tbl_1280[] = { |
73 | "\x00\x40\x07\x6a\x06\xf3\x0d\x6a" "\x10\x10\xc1\x01" | 73 | "\x00\x40\x07\x6a\x06\xf3\x0d\x6a" "\x10\x10\xc1\x01" |
74 | , | 74 | , |
75 | "\x12\x80\x00\x00\x01\x98\x02\x80" "\x03\x12\x04\x01\x0b\x57\x0e\x61" | 75 | "\x12\x80\x00\x00\x01\x98\x02\x80" "\x03\x12\x04\x01\x0b\x57\x0e\x61" |
@@ -217,7 +217,7 @@ static int ov9655_init_post_alt(struct gspca_dev *gspca_dev) | |||
217 | 217 | ||
218 | ctrl_out(gspca_dev, 0x40, 5, 0x0001, 0x0000, 0, NULL); | 218 | ctrl_out(gspca_dev, 0x40, 5, 0x0001, 0x0000, 0, NULL); |
219 | 219 | ||
220 | tbl = (reso == IMAGE_640) ? tbl_640 : tbl_800; | 220 | tbl = (reso == IMAGE_640) ? tbl_640 : tbl_1280; |
221 | 221 | ||
222 | ctrl_out(gspca_dev, 0x40, 3, 0x0000, 0x0200, | 222 | ctrl_out(gspca_dev, 0x40, 3, 0x0000, 0x0200, |
223 | tbl_length[0], tbl[0]); | 223 | tbl_length[0], tbl[0]); |