Input: misc - use macro module_platform_driver()
Commit 940ab88962
introduced a new macro to
save some platform_driver boilerplate code. Use it.
Signed-off-by: JJ Ding <dgdunix@gmail.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
This commit is contained in:
@@ -410,18 +410,7 @@ static struct platform_driver twl6040_vibra_driver = {
|
||||
.pm = &twl6040_vibra_pm_ops,
|
||||
},
|
||||
};
|
||||
|
||||
static int __init twl6040_vibra_init(void)
|
||||
{
|
||||
return platform_driver_register(&twl6040_vibra_driver);
|
||||
}
|
||||
module_init(twl6040_vibra_init);
|
||||
|
||||
static void __exit twl6040_vibra_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&twl6040_vibra_driver);
|
||||
}
|
||||
module_exit(twl6040_vibra_exit);
|
||||
module_platform_driver(twl6040_vibra_driver);
|
||||
|
||||
MODULE_ALIAS("platform:twl6040-vibra");
|
||||
MODULE_DESCRIPTION("TWL6040 Vibra driver");
|
||||
|
Reference in New Issue
Block a user