diff options
author | Michael Krufky <mkrufky@m1k.net> | 2006-01-09 12:25:47 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@brturbo.com.br> | 2006-01-09 12:25:47 -0500 |
commit | 37bdfa06b6bbf085b55d64eb5d9ed112418ed5ad (patch) | |
tree | 0370f8fbf10081ec50913616407dae208bd418b1 /drivers | |
parent | effee0333b6090ff4ff0463e8fb6084cf4406bbd (diff) |
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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/dvb/dvb-usb/cxusb.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/media/dvb/dvb-usb/cxusb.c b/drivers/media/dvb/dvb-usb/cxusb.c index 8ca07fdab03d..1a67ed598d97 100644 --- a/drivers/media/dvb/dvb-usb/cxusb.c +++ b/drivers/media/dvb/dvb-usb/cxusb.c | |||
@@ -209,7 +209,7 @@ static int cxusb_cx22702_frontend_attach(struct dvb_usb_device *d) | |||
209 | 209 | ||
210 | static int cxusb_lgdt330x_frontend_attach(struct dvb_usb_device *d) | 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 | err("set interface failed"); | 213 | err("set interface failed"); |
214 | 214 | ||
215 | cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, NULL, 0); | 215 | cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, NULL, 0); |
@@ -283,7 +283,9 @@ static struct dvb_usb_properties cxusb_bluebird_atsc_properties = { | |||
283 | .caps = DVB_USB_IS_AN_I2C_ADAPTER, | 283 | .caps = DVB_USB_IS_AN_I2C_ADAPTER, |
284 | 284 | ||
285 | .usb_ctrl = CYPRESS_FX2, | 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 | .size_of_priv = sizeof(struct cxusb_state), | 290 | .size_of_priv = sizeof(struct cxusb_state), |
289 | 291 | ||