Skip to content

Commit

Permalink
media: dvb-usb-v2\dvbsky: MyGica T230C v2 Lite support.
Browse files Browse the repository at this point in the history
  • Loading branch information
crazycat69 committed Jan 4, 2021
1 parent 7bed161 commit 34770c6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion drivers/media/usb/dvb-usb-v2/dvbsky.c
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,8 @@ static int dvbsky_mygica_t230c_attach(struct dvb_usb_adapter *adap)
si2168_config.i2c_adapter = &i2c_adapter;
si2168_config.fe = &adap->fe[0];
si2168_config.ts_mode = SI2168_TS_PARALLEL;
if (le16_to_cpu(d->udev->descriptor.idProduct) == USB_PID_MYGICA_T230C2)
if (le16_to_cpu(d->udev->descriptor.idProduct) == USB_PID_MYGICA_T230C2 ||
le16_to_cpu(d->udev->descriptor.idProduct) == USB_PID_MYGICA_T230C2_LITE)
si2168_config.ts_mode |= SI2168_TS_CLK_MANUAL;
si2168_config.ts_clock_inv = 1;

Expand Down Expand Up @@ -789,6 +790,9 @@ static const struct usb_device_id dvbsky_id_table[] = {
{ DVB_USB_DEVICE(USB_VID_CONEXANT, USB_PID_MYGICA_T230C2,
&mygica_t230c_props, "MyGica Mini DVB-(T/T2/C) USB Stick T230C v2",
RC_MAP_TOTAL_MEDIA_IN_HAND_02) },
{ DVB_USB_DEVICE(USB_VID_CONEXANT, USB_PID_MYGICA_T230C2_LITE,
&mygica_t230c_props, "MyGica Mini DVB-(T/T2/C) USB Stick T230C v2 Lite",
NULL) },
{ }
};
MODULE_DEVICE_TABLE(usb, dvbsky_id_table);
Expand Down
1 change: 1 addition & 0 deletions include/media/dvb-usb-ids.h
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,7 @@
#define USB_PID_MYGICA_T230C 0xc689
#define USB_PID_MYGICA_T230C2 0xc68a
#define USB_PID_MYGICA_T230C_LITE 0xc699
#define USB_PID_MYGICA_T230C2_LITE 0xc69a
#define USB_PID_ELGATO_EYETV_DIVERSITY 0x0011
#define USB_PID_ELGATO_EYETV_DTT 0x0021
#define USB_PID_ELGATO_EYETV_DTT_2 0x003f
Expand Down

0 comments on commit 34770c6

Please # to comment.