staging: comedi: ni_labpc_cs: move MODULE_* info to end of file
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>
This commit is contained in:
parent
885d8bce7f
commit
3e6c183306
1 changed files with 4 additions and 4 deletions
|
@ -268,9 +268,6 @@ static const struct pcmcia_device_id labpc_cs_ids[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
MODULE_DEVICE_TABLE(pcmcia, 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 = {
|
static struct pcmcia_driver labpc_cs_driver = {
|
||||||
.probe = labpc_cs_attach,
|
.probe = labpc_cs_attach,
|
||||||
|
@ -281,5 +278,8 @@ static struct pcmcia_driver labpc_cs_driver = {
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
.name = "daqcard-1200",
|
.name = "daqcard-1200",
|
||||||
};
|
};
|
||||||
|
|
||||||
module_comedi_pcmcia_driver(driver_labpc_cs, labpc_cs_driver);
|
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");
|
||||||
|
|
Loading…
Add table
Reference in a new issue