Skip to content

Commit 7f26025

Browse files
committed
Merge pull request #258 from abzieher/rpi-3.6.y
Added Device IDs for August DVB-T 205
2 parents 6bf302e + 70fe055 commit 7f26025

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

drivers/media/dvb/dvb-usb/dvb-usb-ids.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -358,4 +358,5 @@
358358
#define USB_PID_TECHNISAT_USB2_HDCI_V2 0x0002
359359
#define USB_PID_TECHNISAT_AIRSTAR_TELESTICK_2 0x0004
360360
#define USB_PID_TECHNISAT_USB2_DVB_S2 0x0500
361+
#define USB_PID_AUGUST_DVBT205 0xa803
361362
#endif

drivers/media/dvb/dvb-usb/rtl28xxu.c

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1157,6 +1157,7 @@ enum rtl28xxu_usb_table_entry {
11571157
RTL2832U_0CCD_00A9,
11581158
RTL2832U_1F4D_B803,
11591159
RTL2832U_0CCD_00B3,
1160+
RTL2838U_1F4D_A803,
11601161
};
11611162

11621163
static struct usb_device_id rtl28xxu_table[] = {
@@ -1175,6 +1176,10 @@ static struct usb_device_id rtl28xxu_table[] = {
11751176
USB_DEVICE(USB_VID_GTEK, USB_PID_DELOCK_USB2_DVBT)},
11761177
[RTL2832U_0CCD_00B3] = {
11771178
USB_DEVICE(USB_VID_TERRATEC, USB_PID_NOXON_DAB_STICK)},
1179+
1180+
/* RTL2838U */
1181+
[RTL2838U_1F4D_A803] {
1182+
USB_DEVICE(USB_VID_GTEK, USB_PID_AUGUST_DVBT205)},
11781183
{} /* terminating entry */
11791184
};
11801185

@@ -1288,7 +1293,7 @@ static struct dvb_usb_device_properties rtl28xxu_properties[] = {
12881293

12891294
.i2c_algo = &rtl28xxu_i2c_algo,
12901295

1291-
.num_device_descs = 3,
1296+
.num_device_descs = 4,
12921297
.devices = {
12931298
{
12941299
.name = "Terratec Cinergy T Stick Black",
@@ -1308,6 +1313,12 @@ static struct dvb_usb_device_properties rtl28xxu_properties[] = {
13081313
&rtl28xxu_table[RTL2832U_0CCD_00B3],
13091314
},
13101315
},
1316+
{
1317+
.name = "AUGUST DVB-T205",
1318+
.warm_ids = {
1319+
&rtl28xxu_table[RTL2838U_1F4D_A803],
1320+
},
1321+
},
13111322
}
13121323
},
13131324

0 commit comments

Comments
 (0)