* [PATCH 03/33] staging: comedi: cb_das16_cs: add module_{init,exit} declarations
@ 2012-06-25 22:18 H Hartley Sweeten
0 siblings, 0 replies; only message in thread
From: H Hartley Sweeten @ 2012-06-25 22:18 UTC (permalink / raw)
To: Linux Kernel; +Cc: devel, abbotti, fmhess, gregkh
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>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/staging/comedi/drivers/cb_das16_cs.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/comedi/drivers/cb_das16_cs.c b/drivers/staging/comedi/drivers/cb_das16_cs.c
index 76833d0..bca4cbe 100644
--- a/drivers/staging/comedi/drivers/cb_das16_cs.c
+++ b/drivers/staging/comedi/drivers/cb_das16_cs.c
@@ -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;
@@ -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");
--
1.7.11
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2012-06-25 22:18 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-06-25 22:18 [PATCH 03/33] staging: comedi: cb_das16_cs: add module_{init,exit} declarations H Hartley Sweeten
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®