aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc/host/sdhci-acpi.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/mmc/host/sdhci-acpi.c')
-rw-r--r--drivers/mmc/host/sdhci-acpi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/mmc/host/sdhci-acpi.c b/drivers/mmc/host/sdhci-acpi.c
index 12b0a78497f6..2592dddbd965 100644
--- a/drivers/mmc/host/sdhci-acpi.c
+++ b/drivers/mmc/host/sdhci-acpi.c
@@ -111,7 +111,7 @@ static const struct sdhci_acpi_slot *sdhci_acpi_get_slot(const char *hid)
111 return NULL; 111 return NULL;
112} 112}
113 113
114static int __devinit sdhci_acpi_probe(struct platform_device *pdev) 114static int sdhci_acpi_probe(struct platform_device *pdev)
115{ 115{
116 struct device *dev = &pdev->dev; 116 struct device *dev = &pdev->dev;
117 acpi_handle handle = ACPI_HANDLE(dev); 117 acpi_handle handle = ACPI_HANDLE(dev);
@@ -214,7 +214,7 @@ err_free:
214 return err; 214 return err;
215} 215}
216 216
217static int __devexit sdhci_acpi_remove(struct platform_device *pdev) 217static int sdhci_acpi_remove(struct platform_device *pdev)
218{ 218{
219 struct sdhci_acpi_host *c = platform_get_drvdata(pdev); 219 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
220 struct device *dev = &pdev->dev; 220 struct device *dev = &pdev->dev;
@@ -302,7 +302,7 @@ static struct platform_driver sdhci_acpi_driver = {
302 .pm = &sdhci_acpi_pm_ops, 302 .pm = &sdhci_acpi_pm_ops,
303 }, 303 },
304 .probe = sdhci_acpi_probe, 304 .probe = sdhci_acpi_probe,
305 .remove = __devexit_p(sdhci_acpi_remove), 305 .remove = sdhci_acpi_remove,
306}; 306};
307 307
308module_platform_driver(sdhci_acpi_driver); 308module_platform_driver(sdhci_acpi_driver);