mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
22 lines
728 B
Diff
22 lines
728 B
Diff
diff --git a/drivers/media/rc/mceusb.c b/drivers/media/rc/mceusb.c
|
|
index baa1203..fee1f95 100644
|
|
--- a/drivers/media/rc/mceusb.c
|
|
+++ b/drivers/media/rc/mceusb.c
|
|
@@ -200,6 +200,7 @@ static bool debug;
|
|
#define VENDOR_CONEXANT 0x0572
|
|
#define VENDOR_TWISTEDMELON 0x2596
|
|
#define VENDOR_HAUPPAUGE 0x2040
|
|
+#define VENDOR_ADAPTEC 0x03f3
|
|
|
|
enum mceusb_model_type {
|
|
MCE_GEN2 = 0, /* Most boards */
|
|
@@ -414,6 +415,8 @@ static struct usb_device_id mceusb_dev_table[] = {
|
|
/* Hauppauge WINTV-HVR-HVR 930C-HD - based on cx231xx */
|
|
{ USB_DEVICE(VENDOR_HAUPPAUGE, 0xb130),
|
|
.driver_info = HAUPPAUGE_CX_HYBRID_TV },
|
|
+ /* Adaptec / HP eHome Receiver */
|
|
+ { USB_DEVICE(VENDOR_ADAPTEC, 0x0094) },
|
|
/* Terminating entry */
|
|
{ }
|
|
};
|