[<prev] [next>] [day] [month] [year] [list]
Message-ID: <44FC221E.3010502@nachtwindheim.de>
Date: Mon, 04 Sep 2006 14:54:54 +0200
From: Henne <henne@...htwindheim.de>
To: akpm@...l.org
Cc: linux-kernel@...r.kernel.org
Subject: [PATCH] [MM] 5/10 pci_module_init() conversion
From: Henrik Kretzschmar <henne@...htwindheim.de>
Removes an unneeded variable and changes pci_module_init() to
pci_register_driver().
For mm-tree only, cause the driver exists only there.
Signed-off-by: Henrik Kretzschmar <henne@...htwindheim.de>
---
--- linux-2.6.18-rc5-mm1/drivers/char/nozomi.c 2006-09-13 17:54:29.000000000 +0200
+++ linux/drivers/char/nozomi.c 2006-09-13 22:10:28.209108824 +0200
@@ -2168,11 +2168,8 @@
static __init int nozomi_init(void)
{
- int rval = 0;
-
- rval = pci_module_init(&nozomi_driver);
printk(KERN_INFO "Initializing %s\n", VERSION_STRING);
- return rval;
+ return pci_register_driver(&nozomi_driver);
}
static __exit void nozomi_exit(void)
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists