OSDN Git Service

staging: comedi: ni_daq_700: cleanup to the pcmcia_driver declaration
authorH Hartley Sweeten <hartleys@visionengravers.com>
Fri, 22 Jun 2012 23:16:00 +0000 (16:16 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 23 Jun 2012 03:55:04 +0000 (20:55 -0700)
For aesthetic reasons, add some whitespace to the declaration
of the pcmcia_driver and reorder it a bit.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Cc: Frank Mori Hess <fmhess@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/ni_daq_700.c

index af4f10f..30eeb9d 100644 (file)
@@ -430,13 +430,13 @@ static const struct pcmcia_device_id dio700_cs_ids[] = {
 MODULE_DEVICE_TABLE(pcmcia, dio700_cs_ids);
 
 static struct pcmcia_driver dio700_cs_driver = {
-       .probe = dio700_cs_attach,
-       .remove = dio700_cs_detach,
-       .suspend = dio700_cs_suspend,
-       .resume = dio700_cs_resume,
-       .id_table = dio700_cs_ids,
-       .owner = THIS_MODULE,
-       .name = "ni_daq_700",
+       .name           = "ni_daq_700",
+       .owner          = THIS_MODULE,
+       .probe          = dio700_cs_attach,
+       .remove         = dio700_cs_detach,
+       .suspend        = dio700_cs_suspend,
+       .resume         = dio700_cs_resume,
+       .id_table       = dio700_cs_ids,
 };
 
 static int __init dio700_cs_init(void)