diff options
author | Ohad Ben-Cohen <ohad@wizery.com> | 2011-09-11 18:54:50 +0300 |
---|---|---|
committer | Ohad Ben-Cohen <ohad@wizery.com> | 2011-09-21 19:57:45 +0300 |
commit | 9efb4a1bb9e46d26a15116e3c72b1b81c62d8337 (patch) | |
tree | 499140e6ceb0d6697c5f8c8914da349241f23da4 /drivers/hwspinlock | |
parent | f84a8ecfca9229e9227c6ec84123b114ee634959 (diff) | |
download | linux-9efb4a1bb9e46d26a15116e3c72b1b81c62d8337.tar.gz linux-9efb4a1bb9e46d26a15116e3c72b1b81c62d8337.tar.bz2 linux-9efb4a1bb9e46d26a15116e3c72b1b81c62d8337.zip |
hwspinlock/omap: omap_hwspinlock_remove should be __devexit
Mark omap_hwspinlock_remove with __devexit (and use __devexit_p
appropriately) so the function can be discarded when the conditions are met.
Signed-off-by: Ohad Ben-Cohen <ohad@wizery.com>
Diffstat (limited to 'drivers/hwspinlock')
-rw-r--r-- | drivers/hwspinlock/omap_hwspinlock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hwspinlock/omap_hwspinlock.c b/drivers/hwspinlock/omap_hwspinlock.c index aec30064a466..887d34effb3a 100644 --- a/drivers/hwspinlock/omap_hwspinlock.c +++ b/drivers/hwspinlock/omap_hwspinlock.c @@ -142,7 +142,7 @@ iounmap_base: return ret; } -static int omap_hwspinlock_remove(struct platform_device *pdev) +static int __devexit omap_hwspinlock_remove(struct platform_device *pdev) { struct hwspinlock_device *bank = platform_get_drvdata(pdev); void __iomem *io_base = bank->lock[0].priv - LOCK_BASE_OFFSET; @@ -163,7 +163,7 @@ static int omap_hwspinlock_remove(struct platform_device *pdev) static struct platform_driver omap_hwspinlock_driver = { .probe = omap_hwspinlock_probe, - .remove = omap_hwspinlock_remove, + .remove = __devexit_p(omap_hwspinlock_remove), .driver = { .name = "omap_hwspinlock", .owner = THIS_MODULE, |