Commit 49480cf2 authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Chris Ball

mmc: dw_mmc: use helper macro module_platform_driver()

Since v3.2 we have nice macro to define the platform driver's init and exit
calls. This patch simplifies the dw_mmc platform driver by using that macro.
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: default avatarGirish K S <girish.shivanajappa@linaro.org>
Acked-by: default avatarWill Newton <will.newton@imgtec.com>
Signed-off-by: default avatarChris Ball <cjb@laptop.org>
parent 4c4f87fb
...@@ -119,6 +119,7 @@ static const struct of_device_id dw_mci_pltfm_match[] = { ...@@ -119,6 +119,7 @@ static const struct of_device_id dw_mci_pltfm_match[] = {
MODULE_DEVICE_TABLE(of, dw_mci_pltfm_match); MODULE_DEVICE_TABLE(of, dw_mci_pltfm_match);
static struct platform_driver dw_mci_pltfm_driver = { static struct platform_driver dw_mci_pltfm_driver = {
.probe = dw_mci_pltfm_probe,
.remove = __devexit_p(dw_mci_pltfm_remove), .remove = __devexit_p(dw_mci_pltfm_remove),
.driver = { .driver = {
.name = "dw_mmc", .name = "dw_mmc",
...@@ -127,18 +128,7 @@ static struct platform_driver dw_mci_pltfm_driver = { ...@@ -127,18 +128,7 @@ static struct platform_driver dw_mci_pltfm_driver = {
}, },
}; };
static int __init dw_mci_init(void) module_platform_driver(dw_mci_pltfm_driver);
{
return platform_driver_probe(&dw_mci_pltfm_driver, dw_mci_pltfm_probe);
}
static void __exit dw_mci_exit(void)
{
platform_driver_unregister(&dw_mci_pltfm_driver);
}
module_init(dw_mci_init);
module_exit(dw_mci_exit);
MODULE_DESCRIPTION("DW Multimedia Card Interface driver"); MODULE_DESCRIPTION("DW Multimedia Card Interface driver");
MODULE_AUTHOR("NXP Semiconductor VietNam"); MODULE_AUTHOR("NXP Semiconductor VietNam");
......
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