Commit 2faa0ca8 authored by Jarod Wilson's avatar Jarod Wilson Committed by Mauro Carvalho Chehab

[media] mceusb: Formosa e017 device has no tx

Per hardware provided to me, the Formosa Industrial Computing eHome
Infrared Receiver, 0x147a:0xe017, has no tx capability, it is rx only.

Thanks go to Paul Rae for the hardware.
Signed-off-by: default avatarJarod Wilson <jarod@redhat.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 39381d4f
...@@ -150,6 +150,7 @@ enum mceusb_model_type { ...@@ -150,6 +150,7 @@ enum mceusb_model_type {
CX_HYBRID_TV, CX_HYBRID_TV,
MULTIFUNCTION, MULTIFUNCTION,
TIVO_KIT, TIVO_KIT,
MCE_GEN2_NO_TX,
}; };
struct mceusb_model { struct mceusb_model {
...@@ -173,6 +174,10 @@ static const struct mceusb_model mceusb_model[] = { ...@@ -173,6 +174,10 @@ static const struct mceusb_model mceusb_model[] = {
[MCE_GEN2] = { [MCE_GEN2] = {
.mce_gen2 = 1, .mce_gen2 = 1,
}, },
[MCE_GEN2_NO_TX] = {
.mce_gen2 = 1,
.no_tx = 1,
},
[MCE_GEN2_TX_INV] = { [MCE_GEN2_TX_INV] = {
.mce_gen2 = 1, .mce_gen2 = 1,
.tx_mask_normal = 1, .tx_mask_normal = 1,
...@@ -284,7 +289,8 @@ static struct usb_device_id mceusb_dev_table[] = { ...@@ -284,7 +289,8 @@ static struct usb_device_id mceusb_dev_table[] = {
/* Formosa21 / eHome Infrared Receiver */ /* Formosa21 / eHome Infrared Receiver */
{ USB_DEVICE(VENDOR_FORMOSA, 0xe016) }, { USB_DEVICE(VENDOR_FORMOSA, 0xe016) },
/* Formosa aim / Trust MCE Infrared Receiver */ /* Formosa aim / Trust MCE Infrared Receiver */
{ USB_DEVICE(VENDOR_FORMOSA, 0xe017) }, { USB_DEVICE(VENDOR_FORMOSA, 0xe017),
.driver_info = MCE_GEN2_NO_TX },
/* Formosa Industrial Computing / Beanbag Emulation Device */ /* Formosa Industrial Computing / Beanbag Emulation Device */
{ USB_DEVICE(VENDOR_FORMOSA, 0xe018) }, { USB_DEVICE(VENDOR_FORMOSA, 0xe018) },
/* Formosa21 / eHome Infrared Receiver */ /* Formosa21 / eHome Infrared Receiver */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment