Commit 2f485d93 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: ni_daq_700: cleanup to the pcmcia_driver declaration

For aesthetic reasons, add some whitespace to the declaration
of the pcmcia_driver and reorder it a bit.
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Cc: Frank Mori Hess <fmhess@users.sourceforge.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f9039829
...@@ -430,13 +430,13 @@ static const struct pcmcia_device_id dio700_cs_ids[] = { ...@@ -430,13 +430,13 @@ static const struct pcmcia_device_id dio700_cs_ids[] = {
MODULE_DEVICE_TABLE(pcmcia, dio700_cs_ids); MODULE_DEVICE_TABLE(pcmcia, dio700_cs_ids);
static struct pcmcia_driver dio700_cs_driver = { static struct pcmcia_driver dio700_cs_driver = {
.name = "ni_daq_700",
.owner = THIS_MODULE,
.probe = dio700_cs_attach, .probe = dio700_cs_attach,
.remove = dio700_cs_detach, .remove = dio700_cs_detach,
.suspend = dio700_cs_suspend, .suspend = dio700_cs_suspend,
.resume = dio700_cs_resume, .resume = dio700_cs_resume,
.id_table = dio700_cs_ids, .id_table = dio700_cs_ids,
.owner = THIS_MODULE,
.name = "ni_daq_700",
}; };
static int __init dio700_cs_init(void) static int __init dio700_cs_init(void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment