Commit fd21bfcc authored by Fabio Estevam's avatar Fabio Estevam Committed by Greg Kroah-Hartman

w1: mxc_w1: Convert to platform driver

Using module_platform_driver() makes the code smaller and cleaner.
Signed-off-by: default avatarFabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 99ba2fd2
...@@ -191,21 +191,9 @@ static struct platform_driver mxc_w1_driver = { ...@@ -191,21 +191,9 @@ static struct platform_driver mxc_w1_driver = {
.name = "mxc_w1", .name = "mxc_w1",
}, },
.probe = mxc_w1_probe, .probe = mxc_w1_probe,
.remove = mxc_w1_remove, .remove = __devexit_p(mxc_w1_remove),
}; };
module_platform_driver(mxc_w1_driver);
static int __init mxc_w1_init(void)
{
return platform_driver_register(&mxc_w1_driver);
}
static void mxc_w1_exit(void)
{
platform_driver_unregister(&mxc_w1_driver);
}
module_init(mxc_w1_init);
module_exit(mxc_w1_exit);
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
MODULE_AUTHOR("Freescale Semiconductors Inc"); MODULE_AUTHOR("Freescale Semiconductors Inc");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment