diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:22:55 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-28 15:42:36 -0500 |
commit | 463a1f8b3ceebe990ca9a8c7cc2e51ee42cb48eb (patch) | |
tree | 7b9c4b6dec935a71493e7e05e51448b3fc5e8cce /drivers/dma/mmp_pdma.c | |
parent | a7d6e3ec28bba30d1409d70de1958edc6d9109d7 (diff) |
dma: remove use of __devinit
CONFIG_HOTPLUG is going away as an option so __devinit is no longer
needed.
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Cc: Li Yang <leoli@freescale.com>
Cc: Zhang Wei <zw@zh-kernel.org>
Cc: Barry Song <baohua.song@csr.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/dma/mmp_pdma.c')
-rw-r--r-- | drivers/dma/mmp_pdma.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/dma/mmp_pdma.c b/drivers/dma/mmp_pdma.c index 4777986adbaf..13bdf4a7e1ec 100644 --- a/drivers/dma/mmp_pdma.c +++ b/drivers/dma/mmp_pdma.c | |||
@@ -720,7 +720,7 @@ static int __devexit mmp_pdma_remove(struct platform_device *op) | |||
720 | return 0; | 720 | return 0; |
721 | } | 721 | } |
722 | 722 | ||
723 | static int __devinit mmp_pdma_chan_init(struct mmp_pdma_device *pdev, | 723 | static int mmp_pdma_chan_init(struct mmp_pdma_device *pdev, |
724 | int idx, int irq) | 724 | int idx, int irq) |
725 | { | 725 | { |
726 | struct mmp_pdma_phy *phy = &pdev->phy[idx]; | 726 | struct mmp_pdma_phy *phy = &pdev->phy[idx]; |
@@ -764,7 +764,7 @@ static struct of_device_id mmp_pdma_dt_ids[] = { | |||
764 | }; | 764 | }; |
765 | MODULE_DEVICE_TABLE(of, mmp_pdma_dt_ids); | 765 | MODULE_DEVICE_TABLE(of, mmp_pdma_dt_ids); |
766 | 766 | ||
767 | static int __devinit mmp_pdma_probe(struct platform_device *op) | 767 | static int mmp_pdma_probe(struct platform_device *op) |
768 | { | 768 | { |
769 | struct mmp_pdma_device *pdev; | 769 | struct mmp_pdma_device *pdev; |
770 | const struct of_device_id *of_id; | 770 | const struct of_device_id *of_id; |