diff options
author | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-07-27 16:06:02 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-07-27 16:13:53 -0400 |
commit | 9683e01effc9ab3eb3c4584a39a6b87dadf5f391 (patch) | |
tree | 9e6373a3619a184f6692ccf176fbdb0b124d30dc /drivers/media/rc/mceusb.c | |
parent | 1f97947c15a8d2bc21917463eb72d7f8685e3a86 (diff) |
[media] mceusb: add support for newer cx231xx devices
Add support for the si2165-based cx231xx devices:
[2013:025e] PCTV QuatroStick 522e
[2013:0259] PCTV QuatroStick 521e
[2040:b131] Hauppauge WinTV 930C-HD (model 1114xx)
They're similar to the already supported:
[2040:b130] Hauppauge WinTV 930C-HD (model 1113xx)
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'drivers/media/rc/mceusb.c')
-rw-r--r-- | drivers/media/rc/mceusb.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/media/rc/mceusb.c b/drivers/media/rc/mceusb.c index b1be81fc6bd7..48a6a0826a77 100644 --- a/drivers/media/rc/mceusb.c +++ b/drivers/media/rc/mceusb.c | |||
@@ -187,6 +187,7 @@ | |||
187 | #define VENDOR_CONEXANT 0x0572 | 187 | #define VENDOR_CONEXANT 0x0572 |
188 | #define VENDOR_TWISTEDMELON 0x2596 | 188 | #define VENDOR_TWISTEDMELON 0x2596 |
189 | #define VENDOR_HAUPPAUGE 0x2040 | 189 | #define VENDOR_HAUPPAUGE 0x2040 |
190 | #define VENDOR_PCTV 0x2013 | ||
190 | 191 | ||
191 | enum mceusb_model_type { | 192 | enum mceusb_model_type { |
192 | MCE_GEN2 = 0, /* Most boards */ | 193 | MCE_GEN2 = 0, /* Most boards */ |
@@ -396,6 +397,13 @@ static struct usb_device_id mceusb_dev_table[] = { | |||
396 | /* Hauppauge WINTV-HVR-HVR 930C-HD - based on cx231xx */ | 397 | /* Hauppauge WINTV-HVR-HVR 930C-HD - based on cx231xx */ |
397 | { USB_DEVICE(VENDOR_HAUPPAUGE, 0xb130), | 398 | { USB_DEVICE(VENDOR_HAUPPAUGE, 0xb130), |
398 | .driver_info = HAUPPAUGE_CX_HYBRID_TV }, | 399 | .driver_info = HAUPPAUGE_CX_HYBRID_TV }, |
400 | { USB_DEVICE(VENDOR_HAUPPAUGE, 0xb131), | ||
401 | .driver_info = HAUPPAUGE_CX_HYBRID_TV }, | ||
402 | { USB_DEVICE(VENDOR_PCTV, 0x0259), | ||
403 | .driver_info = HAUPPAUGE_CX_HYBRID_TV }, | ||
404 | { USB_DEVICE(VENDOR_PCTV, 0x025e), | ||
405 | .driver_info = HAUPPAUGE_CX_HYBRID_TV }, | ||
406 | |||
399 | /* Terminating entry */ | 407 | /* Terminating entry */ |
400 | { } | 408 | { } |
401 | }; | 409 | }; |