diff options
author | Bill Pemberton <[email protected]> | 2012-11-19 13:26:01 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2012-11-28 12:22:27 -0800 |
commit | 4740f73fe5388ab5d22d552d2a0dacc62418a70c (patch) | |
tree | 96b73f6f8fbea4347611e7353c05c7502984ebd5 /drivers/mfd/asic3.c | |
parent | a73e5df16b52a12f5210b20484e74c45ae25d04c (diff) |
mfd: remove use of __devexit
CONFIG_HOTPLUG is going away as an option so __devexit is no
longer needed.
Signed-off-by: Bill Pemberton <[email protected]>
Cc: Srinidhi Kasagar <[email protected]>
Cc: Peter Tyser <[email protected]>
Cc: Daniel Walker <[email protected]>
Cc: Bryan Huntsman <[email protected]>
Acked-by: David Brown <[email protected]>
Acked-by: Linus Walleij <[email protected]>
Acked-by: Mark Brown <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'drivers/mfd/asic3.c')
-rw-r--r-- | drivers/mfd/asic3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/asic3.c b/drivers/mfd/asic3.c index b0720d7c1b71..1b15986c01e1 100644 --- a/drivers/mfd/asic3.c +++ b/drivers/mfd/asic3.c @@ -1039,7 +1039,7 @@ static int __init asic3_probe(struct platform_device *pdev) return ret; } -static int __devexit asic3_remove(struct platform_device *pdev) +static int asic3_remove(struct platform_device *pdev) { int ret; struct asic3 *asic = platform_get_drvdata(pdev); |