]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
Staging: p9auth: adding __init/__exit macros
authorPeter Huewe <peterhuewe@gmx.de>
Mon, 28 Sep 2009 23:49:00 +0000 (01:49 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 11 Dec 2009 20:23:04 +0000 (12:23 -0800)
Trivial patch which adds the __init/__exit macros to the module_init/
module_exit functions of drivers/staging/p9auth/p9auth.c

Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/p9auth/p9auth.c

index 8ccfff723eecd6e7863b8d801f68b01f4ed8129b..db7962621210764ccd1c236269d60509633959f6 100644 (file)
@@ -334,6 +334,7 @@ static const struct file_operations cap_fops = {
        .release = cap_release,
 };
 
+/* no __exit here because it can be called by the init function */
 static void cap_cleanup_module(void)
 {
        int i;
@@ -360,7 +361,7 @@ static void cap_setup_cdev(struct cap_dev *dev, int index)
                printk(KERN_NOTICE "Error %d adding cap%d", err, index);
 }
 
-static int cap_init_module(void)
+static int __init cap_init_module(void)
 {
        int result, i;
        dev_t dev = 0;