Skip to content

Commit

Permalink
staging: comedi: ni_labpc_cs: move MODULE_* info to end of file
Browse files Browse the repository at this point in the history
For aesthetic reasons, move all the MODULE_* information to the end
of the file.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
H Hartley Sweeten authored and Greg Kroah-Hartman committed Jan 30, 2013
1 parent 885d8bc commit 3e6c183
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/staging/comedi/drivers/ni_labpc_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -268,9 +268,6 @@ static const struct pcmcia_device_id labpc_cs_ids[] = {
};

MODULE_DEVICE_TABLE(pcmcia, labpc_cs_ids);
MODULE_AUTHOR("Frank Mori Hess <fmhess@users.sourceforge.net>");
MODULE_DESCRIPTION("Comedi driver for National Instruments Lab-PC");
MODULE_LICENSE("GPL");

static struct pcmcia_driver labpc_cs_driver = {
.probe = labpc_cs_attach,
Expand All @@ -281,5 +278,8 @@ static struct pcmcia_driver labpc_cs_driver = {
.owner = THIS_MODULE,
.name = "daqcard-1200",
};

module_comedi_pcmcia_driver(driver_labpc_cs, labpc_cs_driver);

MODULE_DESCRIPTION("Comedi driver for National Instruments Lab-PC");
MODULE_AUTHOR("Frank Mori Hess <fmhess@users.sourceforge.net>");
MODULE_LICENSE("GPL");

0 comments on commit 3e6c183

Please sign in to comment.