Skip to content

Commit

Permalink
staging: comedi: cb_das16_cs: move the MODULE_* stuff to the EOF
Browse files Browse the repository at this point in the history
Move the MODULE_* declarations to the end of the file.

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 726dd50 commit 1692067
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions drivers/staging/comedi/drivers/cb_das16_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -769,9 +769,6 @@ static const struct pcmcia_device_id das16cs_id_table[] = {
};

MODULE_DEVICE_TABLE(pcmcia, das16cs_id_table);
MODULE_AUTHOR("David A. Schleef <ds@schleef.org>");
MODULE_DESCRIPTION("Comedi driver for Computer Boards PC-CARD DAS16/16");
MODULE_LICENSE("GPL");

struct pcmcia_driver das16cs_driver = {
.probe = das16cs_pcmcia_attach,
Expand Down Expand Up @@ -811,3 +808,7 @@ void __exit cleanup_module(void)
exit_das16cs_pcmcia_cs();
comedi_driver_unregister(&driver_das16cs);
}

MODULE_AUTHOR("David A. Schleef <ds@schleef.org>");
MODULE_DESCRIPTION("Comedi driver for Computer Boards PC-CARD DAS16/16");
MODULE_LICENSE("GPL");

0 comments on commit 1692067

Please sign in to comment.