diff options
author | Patrick Boettcher <pb@linuxtv.org> | 2006-09-10 17:09:22 +0200 |
---|---|---|
committer | Patrick Boettcher <pb@linuxtv.org> | 2006-09-10 17:09:22 +0200 |
commit | 30543fad4b2bd50f892fb1543cdec79fd8901201 (patch) | |
tree | 102bb46a01983849b02d7b2ff4391e7f07c6f90c /linux/drivers/media/dvb/dvb-usb | |
parent | 9bd44ba57afe38dbf3fb61095b4c69fd0513b216 (diff) | |
download | mediapointer-dvb-s2-30543fad4b2bd50f892fb1543cdec79fd8901201.tar.gz mediapointer-dvb-s2-30543fad4b2bd50f892fb1543cdec79fd8901201.tar.bz2 |
Problem with dibusb-mb.c USB IDs
From: Alistair Buxton <a.j.buxton@gmail.com>
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>
Diffstat (limited to 'linux/drivers/media/dvb/dvb-usb')
-rw-r--r-- | linux/drivers/media/dvb/dvb-usb/dibusb-mb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/dvb-usb/dibusb-mb.c b/linux/drivers/media/dvb/dvb-usb/dibusb-mb.c index f762d175f..251bd8ba8 100644 --- a/linux/drivers/media/dvb/dvb-usb/dibusb-mb.c +++ b/linux/drivers/media/dvb/dvb-usb/dibusb-mb.c @@ -272,8 +272,8 @@ static struct dvb_usb_properties dibusb1_1_an2235_properties = { #endif .devices = { { "Artec T1 USB1.1 TVBOX with AN2235", - { &dibusb_dib3000mb_table[20], NULL }, { &dibusb_dib3000mb_table[21], NULL }, + { &dibusb_dib3000mb_table[22], NULL }, }, #ifdef CONFIG_DVB_USB_DIBUSB_MB_FAULTY { "Artec T1 USB1.1 TVBOX with AN2235 (faulty USB IDs)", |