staging: comedi: me_daq: use comedi_load_firmware()
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Fri, 17 May 2013 18:17:40 +0000 (11:17 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 17 May 2013 19:09:49 +0000 (12:09 -0700)
Use comedi_load_firmware() instead of duplicating the code in a
private function.

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>
drivers/staging/comedi/drivers/me_daq.c

index a5551e6c8555bd83964f59d14dac7a72a272b478..313f702bb3f9ca5e8ae56f65a8d823cb76738b6c 100644 (file)
@@ -33,7 +33,6 @@
 #include <linux/pci.h>
 #include <linux/interrupt.h>
 #include <linux/sched.h>
-#include <linux/firmware.h>
 
 #include "../comedidev.h"
 
@@ -456,22 +455,6 @@ static int me2600_xilinx_download(struct comedi_device *dev,
        return 0;
 }
 
-static int me2600_upload_firmware(struct comedi_device *dev)
-{
-       struct pci_dev *pcidev = comedi_to_pci_dev(dev);
-       const struct firmware *fw;
-       int ret;
-
-       ret = request_firmware(&fw, ME2600_FIRMWARE, &pcidev->dev);
-       if (ret)
-               return ret;
-
-       ret = me2600_xilinx_download(dev, fw->data, fw->size);
-       release_firmware(fw);
-
-       return ret;
-}
-
 static int me_reset(struct comedi_device *dev)
 {
        struct me_private_data *dev_private = dev->private;
@@ -525,7 +508,9 @@ static int me_auto_attach(struct comedi_device *dev,
 
        /* Download firmware and reset card */
        if (board->needs_firmware) {
-               ret = me2600_upload_firmware(dev);
+               ret = comedi_load_firmware(dev, &comedi_to_pci_dev(dev)->dev,
+                                          ME2600_FIRMWARE,
+                                          me2600_xilinx_download);
                if (ret < 0)
                        return ret;
        }
This page took 0.036216 seconds and 5 git commands to generate.