From: Axel Lin Date: Wed, 11 Jan 2012 07:45:56 +0000 (+0800) Subject: da9052-battery: Convert to use module_platform_driver X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=534f5306d701e2717b039898888bfbb8584186bd;p=mv-sheeva.git da9052-battery: Convert to use module_platform_driver Use the module_platform_driver() macro which makes the code smaller and a bit simpler. Signed-off-by: Axel Lin Signed-off-by: Anton Vorontsov --- diff --git a/drivers/power/da9052-battery.c b/drivers/power/da9052-battery.c index daf52a4b17b..a5f6a0ec157 100644 --- a/drivers/power/da9052-battery.c +++ b/drivers/power/da9052-battery.c @@ -647,18 +647,7 @@ static struct platform_driver da9052_bat_driver = { .owner = THIS_MODULE, }, }; - -static int __init da9052_bat_init(void) -{ - return platform_driver_register(&da9052_bat_driver); -} -module_init(da9052_bat_init); - -static void __exit da9052_bat_exit(void) -{ - platform_driver_unregister(&da9052_bat_driver); -} -module_exit(da9052_bat_exit); +module_platform_driver(da9052_bat_driver); MODULE_DESCRIPTION("DA9052 BAT Device Driver"); MODULE_AUTHOR("David Dajun Chen ");