Commit 5abf6c64 authored by Jingoo Han's avatar Jingoo Han Committed by David S. Miller

ide: tx4938ide: use module_platform_driver_probe()

This patch uses module_platform_driver_probe() macro which makes
the code smaller and simpler.
Signed-off-by: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 47b3bc90
...@@ -203,18 +203,7 @@ static struct platform_driver tx4938ide_driver = { ...@@ -203,18 +203,7 @@ static struct platform_driver tx4938ide_driver = {
.remove = __exit_p(tx4938ide_remove), .remove = __exit_p(tx4938ide_remove),
}; };
static int __init tx4938ide_init(void) module_platform_driver_probe(tx4938ide_driver, tx4938ide_probe);
{
return platform_driver_probe(&tx4938ide_driver, tx4938ide_probe);
}
static void __exit tx4938ide_exit(void)
{
platform_driver_unregister(&tx4938ide_driver);
}
module_init(tx4938ide_init);
module_exit(tx4938ide_exit);
MODULE_DESCRIPTION("TX4938 internal IDE driver"); MODULE_DESCRIPTION("TX4938 internal IDE driver");
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
......
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