diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:25:43 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-28 11:32:53 -0800 |
commit | 1fc7ad5d393df9e69c0cfcb01b2d803dd2021277 (patch) | |
tree | b356fb0c2e0b670701e7b07dc5642e91efc1244a /drivers/clk/clk-max77686.c | |
parent | 018ae93fbc6cb2c843bb899bce05328c393b373d (diff) |
clk: remove use of __devexit
CONFIG_HOTPLUG is going away as an option so __devexit is no
longer needed.
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Acked-by: Mike Turquette <mturquette@linaro.org>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/clk/clk-max77686.c')
-rw-r--r-- | drivers/clk/clk-max77686.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/clk-max77686.c b/drivers/clk/clk-max77686.c index fe449c25efd1..d098f72e1d5f 100644 --- a/drivers/clk/clk-max77686.c +++ b/drivers/clk/clk-max77686.c @@ -199,7 +199,7 @@ out: return ret; } -static int __devexit max77686_clk_remove(struct platform_device *pdev) +static int max77686_clk_remove(struct platform_device *pdev) { struct max77686_clk **max77686_clks = platform_get_drvdata(pdev); int i; |