diff options
author | Maxin B. John <maxin.john@enea.com> | 2013-02-20 02:07:04 +0200 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2013-04-15 09:51:16 +0530 |
commit | 1d1bbd305a7831c47a35811e3ee7e8a6a7c7ed3a (patch) | |
tree | f7f8ac9a4ef2c64fde6522bbe058f14fe981923e /drivers/dma/ipu/ipu_idmac.c | |
parent | 234846d4c8342a5adeb9f70fc0bca606e32c8d2e (diff) | |
download | blackbird-obmc-linux-1d1bbd305a7831c47a35811e3ee7e8a6a7c7ed3a.tar.gz blackbird-obmc-linux-1d1bbd305a7831c47a35811e3ee7e8a6a7c7ed3a.zip |
dma: Remove erroneous __exit and __exit_p() references
Removing the annotation with __exit and referencing with __exit_p()
present in dma driver module remove hooks.
Part of the __devexit and __devexit_p() purge.
Signed-off-by: Maxin B. John <maxin.john@enea.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma/ipu/ipu_idmac.c')
-rw-r--r-- | drivers/dma/ipu/ipu_idmac.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/dma/ipu/ipu_idmac.c b/drivers/dma/ipu/ipu_idmac.c index 8c61d17a86bf..d6d5d7eb3414 100644 --- a/drivers/dma/ipu/ipu_idmac.c +++ b/drivers/dma/ipu/ipu_idmac.c @@ -1756,7 +1756,7 @@ err_noirq: return ret; } -static int __exit ipu_remove(struct platform_device *pdev) +static int ipu_remove(struct platform_device *pdev) { struct ipu *ipu = platform_get_drvdata(pdev); @@ -1781,7 +1781,7 @@ static struct platform_driver ipu_platform_driver = { .name = "ipu-core", .owner = THIS_MODULE, }, - .remove = __exit_p(ipu_remove), + .remove = ipu_remove, }; static int __init ipu_init(void) |