Commit 7b725aae authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: ni_daq_dio24: cleanup pcmcia_driver

For aesthetic reasons, reorder the pcmcia_driver variables and
add some whitespace.
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 573c43f3
...@@ -301,19 +301,17 @@ static const struct pcmcia_device_id dio24_cs_ids[] = { ...@@ -301,19 +301,17 @@ static const struct pcmcia_device_id dio24_cs_ids[] = {
PCMCIA_DEVICE_MANF_CARD(0x010b, 0x475c), /* daqcard-dio24 */ PCMCIA_DEVICE_MANF_CARD(0x010b, 0x475c), /* daqcard-dio24 */
PCMCIA_DEVICE_NULL PCMCIA_DEVICE_NULL
}; };
MODULE_DEVICE_TABLE(pcmcia, dio24_cs_ids); MODULE_DEVICE_TABLE(pcmcia, dio24_cs_ids);
static struct pcmcia_driver dio24_cs_driver = { static struct pcmcia_driver dio24_cs_driver = {
.probe = dio24_cs_attach, .name = "ni_daq_dio24",
.remove = dio24_cs_detach, .owner = THIS_MODULE,
.suspend = dio24_cs_suspend, .id_table = dio24_cs_ids,
.resume = dio24_cs_resume, .probe = dio24_cs_attach,
.id_table = dio24_cs_ids, .remove = dio24_cs_detach,
.owner = THIS_MODULE, .suspend = dio24_cs_suspend,
.name = "ni_daq_dio24", .resume = dio24_cs_resume,
}; };
module_comedi_pcmcia_driver(driver_dio24, dio24_cs_driver); module_comedi_pcmcia_driver(driver_dio24, dio24_cs_driver);
MODULE_AUTHOR("Daniel Vecino Castel <dvecino@able.es>"); MODULE_AUTHOR("Daniel Vecino Castel <dvecino@able.es>");
......
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