diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:20:04 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-28 15:41:36 -0500 |
commit | a7d6e3ec28bba30d1409d70de1958edc6d9109d7 (patch) | |
tree | ae7305f2692c9e705a4620556973c663fe78a5e7 /drivers/dma/sirf-dma.c | |
parent | 7eeb741895ea8926e6064dd0bbb349c6ebc09e8b (diff) |
dma: remove use of __devexit_p
CONFIG_HOTPLUG is going away as an option so __devexit_p is no longer
needed.
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Acked-by: Barry Song <baohua.song@csr.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Acked-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/dma/sirf-dma.c')
-rw-r--r-- | drivers/dma/sirf-dma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/sirf-dma.c b/drivers/dma/sirf-dma.c index d451caace806..62d42c9e16b9 100644 --- a/drivers/dma/sirf-dma.c +++ b/drivers/dma/sirf-dma.c | |||
@@ -673,7 +673,7 @@ static struct of_device_id sirfsoc_dma_match[] = { | |||
673 | 673 | ||
674 | static struct platform_driver sirfsoc_dma_driver = { | 674 | static struct platform_driver sirfsoc_dma_driver = { |
675 | .probe = sirfsoc_dma_probe, | 675 | .probe = sirfsoc_dma_probe, |
676 | .remove = __devexit_p(sirfsoc_dma_remove), | 676 | .remove = sirfsoc_dma_remove, |
677 | .driver = { | 677 | .driver = { |
678 | .name = DRV_NAME, | 678 | .name = DRV_NAME, |
679 | .owner = THIS_MODULE, | 679 | .owner = THIS_MODULE, |