]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
Staging: cx25821: adding __init/__exit macros
authorPeter Huewe <peterhuewe@gmx.de>
Mon, 28 Sep 2009 23:40:59 +0000 (01:40 +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 ./staging/cx25821/cx25821-core.c

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

index 8aceae5a072e08fd4c6b2351b77ac9f445db59dd..67f689de4daada8a8d110c9377ce65e62f6efc60 100644 (file)
@@ -1521,7 +1521,7 @@ static struct pci_driver cx25821_pci_driver = {
        .resume = NULL,
 };
 
-static int cx25821_init(void)
+static int __init cx25821_init(void)
 {
        INIT_LIST_HEAD(&cx25821_devlist);
        printk(KERN_INFO "cx25821 driver version %d.%d.%d loaded\n",
@@ -1530,7 +1530,7 @@ static int cx25821_init(void)
        return pci_register_driver(&cx25821_pci_driver);
 }
 
-static void cx25821_fini(void)
+static void __exit cx25821_fini(void)
 {
        pci_unregister_driver(&cx25821_pci_driver);
 }