Input: touchscreen - 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:
@@ -172,16 +172,4 @@ static struct platform_driver jornada720_ts_driver = {
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
};
|
||||
|
||||
static int __init jornada720_ts_init(void)
|
||||
{
|
||||
return platform_driver_register(&jornada720_ts_driver);
|
||||
}
|
||||
|
||||
static void __exit jornada720_ts_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&jornada720_ts_driver);
|
||||
}
|
||||
|
||||
module_init(jornada720_ts_init);
|
||||
module_exit(jornada720_ts_exit);
|
||||
module_platform_driver(jornada720_ts_driver);
|
||||
|
Reference in New Issue
Block a user