Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

V4L/DVB (3268): Use combined firmware for DVB-T and ATSC Bluebird FusionHDTV USB models.


- Now using firmware "dvb-usb-bluebird-01.fw",
with combined support for atsc and dvb-t Bluebird models.
- Use usb alt setting 0 for EP4 transfer (dvb-t),
- Use usb alt setting 7 for EP2 transfer (atsc) */

Signed-off-by: Michael Krufky <mkrufky@m1k.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>

authored by

Michael Krufky and committed by
Mauro Carvalho Chehab
37bdfa06 effee033

+4 -2
+4 -2
drivers/media/dvb/dvb-usb/cxusb.c
··· 209 209 210 210 static int cxusb_lgdt330x_frontend_attach(struct dvb_usb_device *d) 211 211 { 212 - if (usb_set_interface(d->udev,0,0) < 0) 212 + if (usb_set_interface(d->udev,0,7) < 0) 213 213 err("set interface failed"); 214 214 215 215 cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, NULL, 0); ··· 283 283 .caps = DVB_USB_IS_AN_I2C_ADAPTER, 284 284 285 285 .usb_ctrl = CYPRESS_FX2, 286 - .firmware = "dvb-usb-bluebird-atsc-01.fw", 286 + .firmware = "dvb-usb-bluebird-01.fw", 287 + /* use usb alt setting 0 for EP4 transfer (dvb-t), 288 + use usb alt setting 7 for EP2 transfer (atsc) */ 287 289 288 290 .size_of_priv = sizeof(struct cxusb_state), 289 291