diff options
Diffstat (limited to 'drivers/mmc/host/sdhci-dove.c')
-rw-r--r-- | drivers/mmc/host/sdhci-dove.c | 8 |
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 | ||
100 | static int __devinit sdhci_dove_probe(struct platform_device *pdev) | 100 | static 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 | ||
181 | static int __devexit sdhci_dove_remove(struct platform_device *pdev) | 181 | static 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 | ||
200 | static const struct of_device_id sdhci_dove_of_match_table[] __devinitdata = { | 200 | static 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 | ||
217 | module_platform_driver(sdhci_dove_driver); | 217 | module_platform_driver(sdhci_dove_driver); |