Skip to content

Commit

Permalink
staging: comedi: cb_das16_cs: cleanup the pcmcia_driver declaration
Browse files Browse the repository at this point in the history
For aesthetic reasons, add some whitespace to the declaration
of the pcmcia_driver and reorder it a bit.

Also, the symbol 'das16cs_driver' is only referenced in this file,
make it static. This quiets the following sparse warning:

warning: symbol 'das16cs_driver' was not declared. Should it be static?

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>
  • Loading branch information
H Hartley Sweeten authored and Greg Kroah-Hartman committed Jun 26, 2012
1 parent 64c205f commit e8bed9c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions drivers/staging/comedi/drivers/cb_das16_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -770,14 +770,14 @@ static const struct pcmcia_device_id das16cs_id_table[] = {

MODULE_DEVICE_TABLE(pcmcia, das16cs_id_table);

struct pcmcia_driver das16cs_driver = {
.probe = das16cs_pcmcia_attach,
.remove = das16cs_pcmcia_detach,
.suspend = das16cs_pcmcia_suspend,
.resume = das16cs_pcmcia_resume,
.id_table = das16cs_id_table,
.owner = THIS_MODULE,
.name = "cb_das16_cs",
static struct pcmcia_driver das16cs_driver = {
.name = "cb_das16_cs",
.owner = THIS_MODULE,
.probe = das16cs_pcmcia_attach,
.remove = das16cs_pcmcia_detach,
.suspend = das16cs_pcmcia_suspend,
.resume = das16cs_pcmcia_resume,
.id_table = das16cs_id_table,
};

static int __init das16cs_init(void)
Expand Down

0 comments on commit e8bed9c

Please sign in to comment.