diff options
Diffstat (limited to 'drivers/mmc/host/mmci.c')
-rw-r--r-- | drivers/mmc/host/mmci.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/mmc/host/mmci.c b/drivers/mmc/host/mmci.c index edc3e9baf0e7..ec28d175d9c8 100644 --- a/drivers/mmc/host/mmci.c +++ b/drivers/mmc/host/mmci.c | |||
@@ -261,7 +261,7 @@ static void mmci_init_sg(struct mmci_host *host, struct mmc_data *data) | |||
261 | * no custom DMA interfaces are supported. | 261 | * no custom DMA interfaces are supported. |
262 | */ | 262 | */ |
263 | #ifdef CONFIG_DMA_ENGINE | 263 | #ifdef CONFIG_DMA_ENGINE |
264 | static void __devinit mmci_dma_setup(struct mmci_host *host) | 264 | static void mmci_dma_setup(struct mmci_host *host) |
265 | { | 265 | { |
266 | struct mmci_platform_data *plat = host->plat; | 266 | struct mmci_platform_data *plat = host->plat; |
267 | const char *rxname, *txname; | 267 | const char *rxname, *txname; |
@@ -337,7 +337,7 @@ static void __devinit mmci_dma_setup(struct mmci_host *host) | |||
337 | } | 337 | } |
338 | 338 | ||
339 | /* | 339 | /* |
340 | * This is used in __devinit or __devexit so inline it | 340 | * This is used in or so inline it |
341 | * so it can be discarded. | 341 | * so it can be discarded. |
342 | */ | 342 | */ |
343 | static inline void mmci_dma_release(struct mmci_host *host) | 343 | static inline void mmci_dma_release(struct mmci_host *host) |
@@ -1255,7 +1255,7 @@ static void mmci_dt_populate_generic_pdata(struct device_node *np, | |||
1255 | } | 1255 | } |
1256 | #endif | 1256 | #endif |
1257 | 1257 | ||
1258 | static int __devinit mmci_probe(struct amba_device *dev, | 1258 | static int mmci_probe(struct amba_device *dev, |
1259 | const struct amba_id *id) | 1259 | const struct amba_id *id) |
1260 | { | 1260 | { |
1261 | struct mmci_platform_data *plat = dev->dev.platform_data; | 1261 | struct mmci_platform_data *plat = dev->dev.platform_data; |
@@ -1522,7 +1522,7 @@ static int __devinit mmci_probe(struct amba_device *dev, | |||
1522 | return ret; | 1522 | return ret; |
1523 | } | 1523 | } |
1524 | 1524 | ||
1525 | static int __devexit mmci_remove(struct amba_device *dev) | 1525 | static int mmci_remove(struct amba_device *dev) |
1526 | { | 1526 | { |
1527 | struct mmc_host *mmc = amba_get_drvdata(dev); | 1527 | struct mmc_host *mmc = amba_get_drvdata(dev); |
1528 | 1528 | ||
@@ -1669,7 +1669,7 @@ static struct amba_driver mmci_driver = { | |||
1669 | .pm = &mmci_dev_pm_ops, | 1669 | .pm = &mmci_dev_pm_ops, |
1670 | }, | 1670 | }, |
1671 | .probe = mmci_probe, | 1671 | .probe = mmci_probe, |
1672 | .remove = __devexit_p(mmci_remove), | 1672 | .remove = mmci_remove, |
1673 | .id_table = mmci_ids, | 1673 | .id_table = mmci_ids, |
1674 | }; | 1674 | }; |
1675 | 1675 | ||