mtd: orion_nand: use module_platform_driver_probe()
This patch uses module_platform_driver_probe() macro which makes the code smaller and simpler. Signed-off-by: Jingoo Han <jg1.han@samsung.com> 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
725a2277f8
commit
d9ba31092c
1 changed files with 1 additions and 12 deletions
|
@ -231,18 +231,7 @@ static struct platform_driver orion_nand_driver = {
|
|||
},
|
||||
};
|
||||
|
||||
static int __init orion_nand_init(void)
|
||||
{
|
||||
return platform_driver_probe(&orion_nand_driver, orion_nand_probe);
|
||||
}
|
||||
|
||||
static void __exit orion_nand_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&orion_nand_driver);
|
||||
}
|
||||
|
||||
module_init(orion_nand_init);
|
||||
module_exit(orion_nand_exit);
|
||||
module_platform_driver_probe(orion_nand_driver, orion_nand_probe);
|
||||
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_AUTHOR("Tzachi Perelstein");
|
||||
|
|
Loading…
Reference in a new issue