aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc/host/sdhci-pxav2.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/mmc/host/sdhci-pxav2.c')
-rw-r--r--drivers/mmc/host/sdhci-pxav2.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/mmc/host/sdhci-pxav2.c b/drivers/mmc/host/sdhci-pxav2.c
index 8e63a9c04e31..ac854aa192a8 100644
--- a/drivers/mmc/host/sdhci-pxav2.c
+++ b/drivers/mmc/host/sdhci-pxav2.c
@@ -166,7 +166,7 @@ static inline struct sdhci_pxa_platdata *pxav2_get_mmc_pdata(struct device *dev)
166} 166}
167#endif 167#endif
168 168
169static int __devinit sdhci_pxav2_probe(struct platform_device *pdev) 169static int sdhci_pxav2_probe(struct platform_device *pdev)
170{ 170{
171 struct sdhci_pltfm_host *pltfm_host; 171 struct sdhci_pltfm_host *pltfm_host;
172 struct sdhci_pxa_platdata *pdata = pdev->dev.platform_data; 172 struct sdhci_pxa_platdata *pdata = pdev->dev.platform_data;
@@ -247,7 +247,7 @@ err_clk_get:
247 return ret; 247 return ret;
248} 248}
249 249
250static int __devexit sdhci_pxav2_remove(struct platform_device *pdev) 250static int sdhci_pxav2_remove(struct platform_device *pdev)
251{ 251{
252 struct sdhci_host *host = platform_get_drvdata(pdev); 252 struct sdhci_host *host = platform_get_drvdata(pdev);
253 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); 253 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
@@ -275,7 +275,7 @@ static struct platform_driver sdhci_pxav2_driver = {
275 .pm = SDHCI_PLTFM_PMOPS, 275 .pm = SDHCI_PLTFM_PMOPS,
276 }, 276 },
277 .probe = sdhci_pxav2_probe, 277 .probe = sdhci_pxav2_probe,
278 .remove = __devexit_p(sdhci_pxav2_remove), 278 .remove = sdhci_pxav2_remove,
279}; 279};
280 280
281module_platform_driver(sdhci_pxav2_driver); 281module_platform_driver(sdhci_pxav2_driver);