diff options
Diffstat (limited to 'drivers/mmc/host/s3cmci.c')
-rw-r--r-- | drivers/mmc/host/s3cmci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/mmc/host/s3cmci.c b/drivers/mmc/host/s3cmci.c index 4638ddab97b8..63fb265e0da6 100644 --- a/drivers/mmc/host/s3cmci.c +++ b/drivers/mmc/host/s3cmci.c | |||
@@ -1540,7 +1540,7 @@ static inline void s3cmci_debugfs_remove(struct s3cmci_host *host) { } | |||
1540 | 1540 | ||
1541 | #endif /* CONFIG_DEBUG_FS */ | 1541 | #endif /* CONFIG_DEBUG_FS */ |
1542 | 1542 | ||
1543 | static int __devinit s3cmci_probe(struct platform_device *pdev) | 1543 | static int s3cmci_probe(struct platform_device *pdev) |
1544 | { | 1544 | { |
1545 | struct s3cmci_host *host; | 1545 | struct s3cmci_host *host; |
1546 | struct mmc_host *mmc; | 1546 | struct mmc_host *mmc; |
@@ -1819,7 +1819,7 @@ static void s3cmci_shutdown(struct platform_device *pdev) | |||
1819 | clk_disable(host->clk); | 1819 | clk_disable(host->clk); |
1820 | } | 1820 | } |
1821 | 1821 | ||
1822 | static int __devexit s3cmci_remove(struct platform_device *pdev) | 1822 | static int s3cmci_remove(struct platform_device *pdev) |
1823 | { | 1823 | { |
1824 | struct mmc_host *mmc = platform_get_drvdata(pdev); | 1824 | struct mmc_host *mmc = platform_get_drvdata(pdev); |
1825 | struct s3cmci_host *host = mmc_priv(mmc); | 1825 | struct s3cmci_host *host = mmc_priv(mmc); |
@@ -1906,7 +1906,7 @@ static struct platform_driver s3cmci_driver = { | |||
1906 | }, | 1906 | }, |
1907 | .id_table = s3cmci_driver_ids, | 1907 | .id_table = s3cmci_driver_ids, |
1908 | .probe = s3cmci_probe, | 1908 | .probe = s3cmci_probe, |
1909 | .remove = __devexit_p(s3cmci_remove), | 1909 | .remove = s3cmci_remove, |
1910 | .shutdown = s3cmci_shutdown, | 1910 | .shutdown = s3cmci_shutdown, |
1911 | }; | 1911 | }; |
1912 | 1912 | ||