diff options
author | Alistair Buxton <a.j.buxton@gmail.com> | 2006-09-10 11:09:22 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-09-26 11:30:36 -0400 |
commit | 83905b02af4ebc1cbc952401788cb92619393d04 (patch) | |
tree | 3138acb963de112d44a8a5ce8deb5727645698ba | |
parent | 774c0de4aed4d5171e8c3cb47402265d278d2591 (diff) |
V4L/DVB (4617): Problem with dibusb-mb.c USB IDs
There seems to be an off by one error in the dibusb-mb.c which causes
the "Artec T1 with AN2235" box to be detected as a totally different
box - but it only happens if the Artec is one with the correct USB
IDs. A patch is attached to the second post. However, even with this
patch, the box still won't tune. It will tune using a 2.6.12 kernel
though.
Signed-off-by: Alistair Buxton <a.j.buxton@gmail.com>
Signed-off-by: Patrick Boettcher <pb@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
-rw-r--r-- | drivers/media/dvb/dvb-usb/dibusb-mb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/dvb-usb/dibusb-mb.c b/drivers/media/dvb/dvb-usb/dibusb-mb.c index 5439889af2f5..effd34cc4b02 100644 --- a/drivers/media/dvb/dvb-usb/dibusb-mb.c +++ b/drivers/media/dvb/dvb-usb/dibusb-mb.c | |||
@@ -272,8 +272,8 @@ static struct dvb_usb_properties dibusb1_1_an2235_properties = { | |||
272 | #endif | 272 | #endif |
273 | .devices = { | 273 | .devices = { |
274 | { "Artec T1 USB1.1 TVBOX with AN2235", | 274 | { "Artec T1 USB1.1 TVBOX with AN2235", |
275 | { &dibusb_dib3000mb_table[20], NULL }, | ||
276 | { &dibusb_dib3000mb_table[21], NULL }, | 275 | { &dibusb_dib3000mb_table[21], NULL }, |
276 | { &dibusb_dib3000mb_table[22], NULL }, | ||
277 | }, | 277 | }, |
278 | #ifdef CONFIG_DVB_USB_DIBUSB_MB_FAULTY | 278 | #ifdef CONFIG_DVB_USB_DIBUSB_MB_FAULTY |
279 | { "Artec T1 USB1.1 TVBOX with AN2235 (faulty USB IDs)", | 279 | { "Artec T1 USB1.1 TVBOX with AN2235 (faulty USB IDs)", |