diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:20:24 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-28 15:16:42 -0500 |
commit | 84449216b01f9c2b4c9b1882f9d6abba07b7b7ca (patch) | |
tree | e9d64add01526f868c530847652cc7ce172d067a /drivers/mfd/tc6393xb.c | |
parent | b1f7c8cc1b4619f3dfd9f36bcfd35a0f4ce0cd13 (diff) |
mfd: 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>
Cc: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Cc: Peter Tyser <ptyser@xes-inc.com>
Cc: Daniel Walker <dwalker@fifo99.com>
Cc: Bryan Huntsman <bryanh@codeaurora.org>
Acked-by: David Brown <davidb@codeaurora.org>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/mfd/tc6393xb.c')
-rw-r--r-- | drivers/mfd/tc6393xb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/tc6393xb.c b/drivers/mfd/tc6393xb.c index dcab026fcbb2..9411a88770b8 100644 --- a/drivers/mfd/tc6393xb.c +++ b/drivers/mfd/tc6393xb.c | |||
@@ -831,7 +831,7 @@ static int tc6393xb_resume(struct platform_device *dev) | |||
831 | 831 | ||
832 | static struct platform_driver tc6393xb_driver = { | 832 | static struct platform_driver tc6393xb_driver = { |
833 | .probe = tc6393xb_probe, | 833 | .probe = tc6393xb_probe, |
834 | .remove = __devexit_p(tc6393xb_remove), | 834 | .remove = tc6393xb_remove, |
835 | .suspend = tc6393xb_suspend, | 835 | .suspend = tc6393xb_suspend, |
836 | .resume = tc6393xb_resume, | 836 | .resume = tc6393xb_resume, |
837 | 837 | ||