staging: comedi: das08_cs: cleanup the pcmcia_driver declaration
authorH Hartley Sweeten <hartleys@visionengravers.com>
Mon, 2 Jul 2012 22:44:30 +0000 (15:44 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 6 Jul 2012 22:51:18 +0000 (15:51 -0700)
For aesthetic reasons, add some whitespace to the declaration
of the pcmcia_driver and reorder it a bit.

Also, the symbol 'das08_cs_driver' is only referenced in this file,
make it static. This quiets the following sparse warning:

warning: symbol 'das08_cs_driver' was not declared. Should it be static?

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

index 493078a..de094ad 100644 (file)
@@ -225,14 +225,14 @@ static const struct pcmcia_device_id das08_cs_id_table[] = {
 
 MODULE_DEVICE_TABLE(pcmcia, das08_cs_id_table);
 
-struct pcmcia_driver das08_cs_driver = {
-       .probe = das08_pcmcia_attach,
-       .remove = das08_pcmcia_detach,
-       .suspend = das08_pcmcia_suspend,
-       .resume = das08_pcmcia_resume,
-       .id_table = das08_cs_id_table,
-       .owner = THIS_MODULE,
-       .name = "pcm-das08",
+static struct pcmcia_driver das08_cs_driver = {
+       .name           = "pcm-das08",
+       .owner          = THIS_MODULE,
+       .probe          = das08_pcmcia_attach,
+       .remove         = das08_pcmcia_detach,
+       .suspend        = das08_pcmcia_suspend,
+       .resume         = das08_pcmcia_resume,
+       .id_table       = das08_cs_id_table,
 };
 
 static int __init das08_cs_init_module(void)