diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2006-03-22 22:15:55 -0500 |
---|---|---|
committer | Michael Krufky <mkrufky@linuxtv.org> | 2006-03-22 22:15:55 -0500 |
commit | b4fd24ce0f0674aa2b7ff1b98623663c4763599a (patch) | |
tree | 8f310f765c20f5dcd246c17d946e7fd291d3b8f9 /linux/drivers/media/dvb/dvb-usb | |
parent | a843a07e7054915274ce621ca108f48dfb6dd797 (diff) | |
download | mediapointer-dvb-s2-b4fd24ce0f0674aa2b7ff1b98623663c4763599a.tar.gz mediapointer-dvb-s2-b4fd24ce0f0674aa2b7ff1b98623663c4763599a.tar.bz2 |
cxusb: remove FIXME: comment in bluebird_patch_dvico_firmware_download
From: Michael Krufky <mkrufky@linuxtv.org>
Removed the FIXME comment from bluebird_patch_dvico_firmware_download:
/* FIXME: are we allowed to change the fw-data ? */
Yes, we are allowed. DViCO's Windows driver also does the same thing.
A single firmware image is used to support all of the bluebird boxes.
The firmware sets all devices to PID: d700. Instead of using that, the
driver replaces the d700 with the cold PID+1 before the download.
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/dvb/dvb-usb')
-rw-r--r-- | linux/drivers/media/dvb/dvb-usb/cxusb.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/dvb-usb/cxusb.c b/linux/drivers/media/dvb/dvb-usb/cxusb.c index ed7e4132d..b3dd8098b 100644 --- a/linux/drivers/media/dvb/dvb-usb/cxusb.c +++ b/linux/drivers/media/dvb/dvb-usb/cxusb.c @@ -411,7 +411,6 @@ static int bluebird_patch_dvico_firmware_download(struct usb_device *udev, const if (fw->data[BLUEBIRD_01_ID_OFFSET] == (USB_VID_DVICO & 0xff) && fw->data[BLUEBIRD_01_ID_OFFSET + 1] == USB_VID_DVICO >> 8) { - /* FIXME: are we allowed to change the fw-data ? */ fw->data[BLUEBIRD_01_ID_OFFSET + 2] = udev->descriptor.idProduct + 1; fw->data[BLUEBIRD_01_ID_OFFSET + 3] = udev->descriptor.idProduct >> 8; |