OSDN Git Service

staging: comedi: ni_mio_cs: move comedi_driver declaration
authorH Hartley Sweeten <hartleys@visionengravers.com>
Sat, 26 Jan 2013 00:34:45 +0000 (17:34 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 30 Jan 2013 04:08:23 +0000 (23:08 -0500)
Move the comedi_driver declaration down in the file. This gets
rid of the need for a couple forward declarations.

For aesthetic reasons, add some whitespace to the declaration.

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/ni_mio_cs.c

index 84f4378..253f735 100644 (file)
@@ -225,16 +225,6 @@ static uint16_t mio_cs_win_in(struct comedi_device *dev, int addr)
        return ret;
 }
 
-static int mio_cs_attach(struct comedi_device *dev,
-                        struct comedi_devconfig *it);
-static void mio_cs_detach(struct comedi_device *dev);
-static struct comedi_driver driver_ni_mio_cs = {
-       .driver_name = "ni_mio_cs",
-       .module = THIS_MODULE,
-       .attach = mio_cs_attach,
-       .detach = mio_cs_detach,
-};
-
 #include "ni_mio_common.c"
 
 static int ni_getboardtype(struct comedi_device *dev,
@@ -334,6 +324,13 @@ static int ni_getboardtype(struct comedi_device *dev,
        return 0;
 }
 
+static struct comedi_driver driver_ni_mio_cs = {
+       .driver_name    = "ni_mio_cs",
+       .module         = THIS_MODULE,
+       .attach         = mio_cs_attach,
+       .detach         = mio_cs_detach,
+};
+
 static int mio_pcmcia_config_loop(struct pcmcia_device *p_dev, void *priv_data)
 {
        int base, ret;