diff options
Diffstat (limited to 'drivers/dma/mpc512x_dma.c')
-rw-r--r-- | drivers/dma/mpc512x_dma.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/dma/mpc512x_dma.c b/drivers/dma/mpc512x_dma.c index 2ab0a3d0eed5..2d956732aa3d 100644 --- a/drivers/dma/mpc512x_dma.c +++ b/drivers/dma/mpc512x_dma.c | |||
@@ -641,7 +641,7 @@ mpc_dma_prep_memcpy(struct dma_chan *chan, dma_addr_t dst, dma_addr_t src, | |||
641 | return &mdesc->desc; | 641 | return &mdesc->desc; |
642 | } | 642 | } |
643 | 643 | ||
644 | static int __devinit mpc_dma_probe(struct platform_device *op) | 644 | static int mpc_dma_probe(struct platform_device *op) |
645 | { | 645 | { |
646 | struct device_node *dn = op->dev.of_node; | 646 | struct device_node *dn = op->dev.of_node; |
647 | struct device *dev = &op->dev; | 647 | struct device *dev = &op->dev; |
@@ -799,7 +799,7 @@ static int __devinit mpc_dma_probe(struct platform_device *op) | |||
799 | return retval; | 799 | return retval; |
800 | } | 800 | } |
801 | 801 | ||
802 | static int __devexit mpc_dma_remove(struct platform_device *op) | 802 | static int mpc_dma_remove(struct platform_device *op) |
803 | { | 803 | { |
804 | struct device *dev = &op->dev; | 804 | struct device *dev = &op->dev; |
805 | struct mpc_dma *mdma = dev_get_drvdata(dev); | 805 | struct mpc_dma *mdma = dev_get_drvdata(dev); |
@@ -818,7 +818,7 @@ static struct of_device_id mpc_dma_match[] = { | |||
818 | 818 | ||
819 | static struct platform_driver mpc_dma_driver = { | 819 | static struct platform_driver mpc_dma_driver = { |
820 | .probe = mpc_dma_probe, | 820 | .probe = mpc_dma_probe, |
821 | .remove = __devexit_p(mpc_dma_remove), | 821 | .remove = mpc_dma_remove, |
822 | .driver = { | 822 | .driver = { |
823 | .name = DRV_NAME, | 823 | .name = DRV_NAME, |
824 | .owner = THIS_MODULE, | 824 | .owner = THIS_MODULE, |