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: 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>
This commit is contained in:
parent
f903982947
commit
2f485d93cb
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue