aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc/host/omap.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/mmc/host/omap.c')
-rw-r--r--drivers/mmc/host/omap.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/mmc/host/omap.c b/drivers/mmc/host/omap.c
index 48ad361613ef..4e749ab690c8 100644
--- a/drivers/mmc/host/omap.c
+++ b/drivers/mmc/host/omap.c
@@ -1214,7 +1214,7 @@ static const struct mmc_host_ops mmc_omap_ops = {
1214 .set_ios = mmc_omap_set_ios, 1214 .set_ios = mmc_omap_set_ios,
1215}; 1215};
1216 1216
1217static int __devinit mmc_omap_new_slot(struct mmc_omap_host *host, int id) 1217static int mmc_omap_new_slot(struct mmc_omap_host *host, int id)
1218{ 1218{
1219 struct mmc_omap_slot *slot = NULL; 1219 struct mmc_omap_slot *slot = NULL;
1220 struct mmc_host *mmc; 1220 struct mmc_host *mmc;
@@ -1309,7 +1309,7 @@ static void mmc_omap_remove_slot(struct mmc_omap_slot *slot)
1309 mmc_free_host(mmc); 1309 mmc_free_host(mmc);
1310} 1310}
1311 1311
1312static int __devinit mmc_omap_probe(struct platform_device *pdev) 1312static int mmc_omap_probe(struct platform_device *pdev)
1313{ 1313{
1314 struct omap_mmc_platform_data *pdata = pdev->dev.platform_data; 1314 struct omap_mmc_platform_data *pdata = pdev->dev.platform_data;
1315 struct mmc_omap_host *host = NULL; 1315 struct mmc_omap_host *host = NULL;
@@ -1478,7 +1478,7 @@ err_free_mem_region:
1478 return ret; 1478 return ret;
1479} 1479}
1480 1480
1481static int __devexit mmc_omap_remove(struct platform_device *pdev) 1481static int mmc_omap_remove(struct platform_device *pdev)
1482{ 1482{
1483 struct mmc_omap_host *host = platform_get_drvdata(pdev); 1483 struct mmc_omap_host *host = platform_get_drvdata(pdev);
1484 int i; 1484 int i;
@@ -1566,7 +1566,7 @@ static int mmc_omap_resume(struct platform_device *pdev)
1566 1566
1567static struct platform_driver mmc_omap_driver = { 1567static struct platform_driver mmc_omap_driver = {
1568 .probe = mmc_omap_probe, 1568 .probe = mmc_omap_probe,
1569 .remove = __devexit_p(mmc_omap_remove), 1569 .remove = mmc_omap_remove,
1570 .suspend = mmc_omap_suspend, 1570 .suspend = mmc_omap_suspend,
1571 .resume = mmc_omap_resume, 1571 .resume = mmc_omap_resume,
1572 .driver = { 1572 .driver = {