aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma/edma.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/dma/edma.c')
-rw-r--r--drivers/dma/edma.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/dma/edma.c b/drivers/dma/edma.c
index 05aea3ce8506..232b4583ae93 100644
--- a/drivers/dma/edma.c
+++ b/drivers/dma/edma.c
@@ -545,7 +545,7 @@ static void edma_dma_init(struct edma_cc *ecc, struct dma_device *dma,
545 INIT_LIST_HEAD(&dma->channels); 545 INIT_LIST_HEAD(&dma->channels);
546} 546}
547 547
548static int __devinit edma_probe(struct platform_device *pdev) 548static int edma_probe(struct platform_device *pdev)
549{ 549{
550 struct edma_cc *ecc; 550 struct edma_cc *ecc;
551 int ret; 551 int ret;
@@ -598,7 +598,7 @@ static int __devexit edma_remove(struct platform_device *pdev)
598 598
599static struct platform_driver edma_driver = { 599static struct platform_driver edma_driver = {
600 .probe = edma_probe, 600 .probe = edma_probe,
601 .remove = __devexit_p(edma_remove), 601 .remove = edma_remove,
602 .driver = { 602 .driver = {
603 .name = "edma-dma-engine", 603 .name = "edma-dma-engine",
604 .owner = THIS_MODULE, 604 .owner = THIS_MODULE,