diff options
author | Devin Heitmueller <dheitmueller@linuxtv.org> | 2008-12-16 21:35:23 -0500 |
---|---|---|
committer | Devin Heitmueller <dheitmueller@linuxtv.org> | 2008-12-16 21:35:23 -0500 |
commit | 1a40501f3c36a45f405ee3bc6c76bb87df9c358d (patch) | |
tree | 48fffcd1abf1d3a982bb59bd7fe441f04c4753e9 /linux/drivers/media/video | |
parent | 92b4058a43959c8e3cba8044d4bd3adba9cabdd5 (diff) | |
download | mediapointer-dvb-s2-1a40501f3c36a45f405ee3bc6c76bb87df9c358d.tar.gz mediapointer-dvb-s2-1a40501f3c36a45f405ee3bc6c76bb87df9c358d.tar.bz2 |
em28xx: don't assume every eb1a:2820 reference design is a Prolink PlayTV USB2
From: Devin Heitmueller <dheitmueller@linuxtv.org>
Don't operate under the assumption that every device that uses the em2820
default USB ID is a Prolink PlayTV USB. We have an eeprom hash, so use that,
since otherwise we cannot support other devices with the 2820 default USB ID
(such as the ADS Tech Instant TV USB USBAV-704)
Priority: normal
Signed-off-by: Devin Heitmueller <dheitmueller@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/video')
-rw-r--r-- | linux/drivers/media/video/em28xx/em28xx-cards.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/video/em28xx/em28xx-cards.c b/linux/drivers/media/video/em28xx/em28xx-cards.c index 3eb4408b4..7a2553c4d 100644 --- a/linux/drivers/media/video/em28xx/em28xx-cards.c +++ b/linux/drivers/media/video/em28xx/em28xx-cards.c @@ -1313,7 +1313,7 @@ struct usb_device_id em28xx_id_table [] = { { USB_DEVICE(0xeb1a, 0x2820), .driver_info = EM2820_BOARD_UNKNOWN }, { USB_DEVICE(0xeb1a, 0x2821), - .driver_info = EM2820_BOARD_PROLINK_PLAYTV_USB2 }, + .driver_info = EM2820_BOARD_UNKNOWN }, { USB_DEVICE(0xeb1a, 0x2860), .driver_info = EM2820_BOARD_UNKNOWN }, { USB_DEVICE(0xeb1a, 0x2861), |