aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc/host/sdhci-dove.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/mmc/host/sdhci-dove.c')
-rw-r--r--drivers/mmc/host/sdhci-dove.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/mmc/host/sdhci-dove.c b/drivers/mmc/host/sdhci-dove.c
index e6214480bc98..169fab91778e 100644
--- a/drivers/mmc/host/sdhci-dove.c
+++ b/drivers/mmc/host/sdhci-dove.c
@@ -97,7 +97,7 @@ static struct sdhci_pltfm_data sdhci_dove_pdata = {
97 SDHCI_QUIRK_NO_HISPD_BIT, 97 SDHCI_QUIRK_NO_HISPD_BIT,
98}; 98};
99 99
100static int __devinit sdhci_dove_probe(struct platform_device *pdev) 100static int sdhci_dove_probe(struct platform_device *pdev)
101{ 101{
102 struct sdhci_host *host; 102 struct sdhci_host *host;
103 struct sdhci_pltfm_host *pltfm_host; 103 struct sdhci_pltfm_host *pltfm_host;
@@ -178,7 +178,7 @@ err_sdhci_pltfm_init:
178 return ret; 178 return ret;
179} 179}
180 180
181static int __devexit sdhci_dove_remove(struct platform_device *pdev) 181static int sdhci_dove_remove(struct platform_device *pdev)
182{ 182{
183 struct sdhci_host *host = platform_get_drvdata(pdev); 183 struct sdhci_host *host = platform_get_drvdata(pdev);
184 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); 184 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
@@ -197,7 +197,7 @@ static int __devexit sdhci_dove_remove(struct platform_device *pdev)
197 return 0; 197 return 0;
198} 198}
199 199
200static const struct of_device_id sdhci_dove_of_match_table[] __devinitdata = { 200static const struct of_device_id sdhci_dove_of_match_table[] = {
201 { .compatible = "marvell,dove-sdhci", }, 201 { .compatible = "marvell,dove-sdhci", },
202 {} 202 {}
203}; 203};
@@ -211,7 +211,7 @@ static struct platform_driver sdhci_dove_driver = {
211 .of_match_table = of_match_ptr(sdhci_dove_of_match_table), 211 .of_match_table = of_match_ptr(sdhci_dove_of_match_table),
212 }, 212 },
213 .probe = sdhci_dove_probe, 213 .probe = sdhci_dove_probe,
214 .remove = __devexit_p(sdhci_dove_remove), 214 .remove = sdhci_dove_remove,
215}; 215};
216 216
217module_platform_driver(sdhci_dove_driver); 217module_platform_driver(sdhci_dove_driver);