Skip to content

Commit

Permalink
staging: comedi: cb_das16_cs: add module_{init, exit} declarations
Browse files Browse the repository at this point in the history
The init and exit functions for this module were being declared
as global symbols. Add the module_{init,exit} declarations and
make the functions static. Also, rename the functions so they
have namespace associated with the module.

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 1692067 commit 3bbb82c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions drivers/staging/comedi/drivers/cb_das16_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,7 @@ static void __exit exit_das16cs_pcmcia_cs(void)
pcmcia_unregister_driver(&das16cs_driver);
}

int __init init_module(void)
static int __init das16cs_init(void)
{
int ret;

Expand All @@ -802,12 +802,14 @@ int __init init_module(void)

return comedi_driver_register(&driver_das16cs);
}
module_init(das16cs_init);

void __exit cleanup_module(void)
static void __exit das16cs_exit(void)
{
exit_das16cs_pcmcia_cs();
comedi_driver_unregister(&driver_das16cs);
}
module_exit(das16cs_exit);

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

0 comments on commit 3bbb82c

Please sign in to comment.