forked from Minki/linux
mtd: nand/gpio: Convert to module_platform_driver()
module_platform_driver simplifies the code by eliminating module_init and module_exit calls. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
This commit is contained in:
parent
24b82d3c35
commit
2fe87aef33
@ -417,20 +417,7 @@ static struct platform_driver gpio_nand_driver = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
static int __init gpio_nand_init(void)
|
module_platform_driver(gpio_nand_driver);
|
||||||
{
|
|
||||||
printk(KERN_INFO "GPIO NAND driver, © 2004 Simtec Electronics\n");
|
|
||||||
|
|
||||||
return platform_driver_register(&gpio_nand_driver);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void __exit gpio_nand_exit(void)
|
|
||||||
{
|
|
||||||
platform_driver_unregister(&gpio_nand_driver);
|
|
||||||
}
|
|
||||||
|
|
||||||
module_init(gpio_nand_init);
|
|
||||||
module_exit(gpio_nand_exit);
|
|
||||||
|
|
||||||
MODULE_LICENSE("GPL");
|
MODULE_LICENSE("GPL");
|
||||||
MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
|
MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
|
||||||
|
Loading…
Reference in New Issue
Block a user