aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma/dw_dmac.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/dma/dw_dmac.c')
-rw-r--r--drivers/dma/dw_dmac.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/dma/dw_dmac.c b/drivers/dma/dw_dmac.c
index c4b0eb3cde81..3e8ba02ba292 100644
--- a/drivers/dma/dw_dmac.c
+++ b/drivers/dma/dw_dmac.c
@@ -1462,7 +1462,7 @@ static void dw_dma_off(struct dw_dma *dw)
1462 dw->chan[i].initialized = false; 1462 dw->chan[i].initialized = false;
1463} 1463}
1464 1464
1465static int __devinit dw_probe(struct platform_device *pdev) 1465static int dw_probe(struct platform_device *pdev)
1466{ 1466{
1467 struct dw_dma_platform_data *pdata; 1467 struct dw_dma_platform_data *pdata;
1468 struct resource *io; 1468 struct resource *io;
@@ -1634,7 +1634,7 @@ static int __devinit dw_probe(struct platform_device *pdev)
1634 return 0; 1634 return 0;
1635} 1635}
1636 1636
1637static int __devexit dw_remove(struct platform_device *pdev) 1637static int dw_remove(struct platform_device *pdev)
1638{ 1638{
1639 struct dw_dma *dw = platform_get_drvdata(pdev); 1639 struct dw_dma *dw = platform_get_drvdata(pdev);
1640 struct dw_dma_chan *dwc, *_dwc; 1640 struct dw_dma_chan *dwc, *_dwc;
@@ -1700,7 +1700,7 @@ MODULE_DEVICE_TABLE(of, dw_dma_id_table);
1700#endif 1700#endif
1701 1701
1702static struct platform_driver dw_driver = { 1702static struct platform_driver dw_driver = {
1703 .remove = __devexit_p(dw_remove), 1703 .remove = dw_remove,
1704 .shutdown = dw_shutdown, 1704 .shutdown = dw_shutdown,
1705 .driver = { 1705 .driver = {
1706 .name = "dw_dmac", 1706 .name = "dw_dmac",