diff options
Diffstat (limited to 'drivers/dma/mmp_tdma.c')
-rw-r--r-- | drivers/dma/mmp_tdma.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/dma/mmp_tdma.c b/drivers/dma/mmp_tdma.c index f3e8d71bcbc..323821c0c09 100644 --- a/drivers/dma/mmp_tdma.c +++ b/drivers/dma/mmp_tdma.c | |||
@@ -475,7 +475,7 @@ static int __devexit mmp_tdma_remove(struct platform_device *pdev) | |||
475 | return 0; | 475 | return 0; |
476 | } | 476 | } |
477 | 477 | ||
478 | static int __devinit mmp_tdma_chan_init(struct mmp_tdma_device *tdev, | 478 | static int mmp_tdma_chan_init(struct mmp_tdma_device *tdev, |
479 | int idx, int irq, int type) | 479 | int idx, int irq, int type) |
480 | { | 480 | { |
481 | struct mmp_tdma_chan *tdmac; | 481 | struct mmp_tdma_chan *tdmac; |
@@ -515,7 +515,7 @@ static struct of_device_id mmp_tdma_dt_ids[] = { | |||
515 | }; | 515 | }; |
516 | MODULE_DEVICE_TABLE(of, mmp_tdma_dt_ids); | 516 | MODULE_DEVICE_TABLE(of, mmp_tdma_dt_ids); |
517 | 517 | ||
518 | static int __devinit mmp_tdma_probe(struct platform_device *pdev) | 518 | static int mmp_tdma_probe(struct platform_device *pdev) |
519 | { | 519 | { |
520 | enum mmp_tdma_type type; | 520 | enum mmp_tdma_type type; |
521 | const struct of_device_id *of_id; | 521 | const struct of_device_id *of_id; |
@@ -609,7 +609,7 @@ static struct platform_driver mmp_tdma_driver = { | |||
609 | }, | 609 | }, |
610 | .id_table = mmp_tdma_id_table, | 610 | .id_table = mmp_tdma_id_table, |
611 | .probe = mmp_tdma_probe, | 611 | .probe = mmp_tdma_probe, |
612 | .remove = __devexit_p(mmp_tdma_remove), | 612 | .remove = mmp_tdma_remove, |
613 | }; | 613 | }; |
614 | 614 | ||
615 | module_platform_driver(mmp_tdma_driver); | 615 | module_platform_driver(mmp_tdma_driver); |