staging: comedi: usbduxsigma: move firmware request/upload into (*auto_attach)

The last step the usb_driver (*probe) does before handing off to the
comedi_driver (*auto_attach) is requesting and uploading the firmware.

Move the request/upload into the (*auto_attach) so we can use the
comedi_load_firmware() helper.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
H Hartley Sweeten 2013-05-20 14:32:01 -07:00 committed by Greg Kroah-Hartman
parent 1cf35b51be
commit 0b2372897b
1 changed files with 12 additions and 14 deletions
drivers/staging/comedi/drivers

View File

@ -2234,12 +2234,22 @@ static int usbduxsigma_auto_attach(struct comedi_device *dev,
unsigned long context_unused)
{
struct usb_interface *uinterf = comedi_to_usb_interface(dev);
struct usbduxsub *uds = usb_get_intfdata(uinterf);
struct usb_device *usb = uds->usbdev;
const struct firmware *fw;
int ret;
struct usbduxsub *uds;
ret = request_firmware(&fw, FIRMWARE, &usb->dev);
if (ret == 0) {
ret = firmwareUpload(uds, fw->data, fw->size);
release_firmware(fw);
}
if (ret < 0)
return ret;
dev->private = NULL;
down(&start_stop_sem);
uds = usb_get_intfdata(uinterf);
if (!uds || !uds->probed) {
dev_err(dev->class_dev,
"usbduxsigma: error: auto_attach failed, not connected\n");
@ -2279,10 +2289,8 @@ static int usbduxsigma_usb_probe(struct usb_interface *uinterf,
{
struct usb_device *udev = interface_to_usbdev(uinterf);
struct device *dev = &uinterf->dev;
const struct firmware *fw;
int i;
int index;
int ret;
dev_dbg(dev, "comedi_: usbdux_: "
"finding a free structure for the usb-device\n");
@ -2500,16 +2508,6 @@ static int usbduxsigma_usb_probe(struct usb_interface *uinterf,
usbduxsub[index].probed = 1;
up(&start_stop_sem);
ret = request_firmware(&fw, FIRMWARE, &udev->dev);
if (ret == 0) {
ret = firmwareUpload(&usbduxsub[index], fw->data, fw->size);
release_firmware(fw);
}
if (ret) {
dev_err(dev, "Could not load firmware (err=%d)\n", ret);
return ret;
}
return comedi_usb_auto_config(uinterf, &usbduxsigma_driver, 0);;
}