Commit 27fa05bc authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: das08_cs: cleanup the pcmcia_driver declaration

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: 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 36061c84
...@@ -225,14 +225,14 @@ static const struct pcmcia_device_id das08_cs_id_table[] = { ...@@ -225,14 +225,14 @@ static const struct pcmcia_device_id das08_cs_id_table[] = {
MODULE_DEVICE_TABLE(pcmcia, das08_cs_id_table); MODULE_DEVICE_TABLE(pcmcia, das08_cs_id_table);
struct pcmcia_driver das08_cs_driver = { static struct pcmcia_driver das08_cs_driver = {
.probe = das08_pcmcia_attach, .name = "pcm-das08",
.remove = das08_pcmcia_detach, .owner = THIS_MODULE,
.suspend = das08_pcmcia_suspend, .probe = das08_pcmcia_attach,
.resume = das08_pcmcia_resume, .remove = das08_pcmcia_detach,
.id_table = das08_cs_id_table, .suspend = das08_pcmcia_suspend,
.owner = THIS_MODULE, .resume = das08_pcmcia_resume,
.name = "pcm-das08", .id_table = das08_cs_id_table,
}; };
static int __init das08_cs_init_module(void) static int __init das08_cs_init_module(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