diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:19:59 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-28 11:31:53 -0800 |
commit | f9cfa6305198f190a685e45a3d78140ea8f298a9 (patch) | |
tree | a825e4553265154796b6b6622a344c2d89f512dc /drivers/clk/clk-wm831x.c | |
parent | 164dce822157311eeb81470492889bcd83d84ff1 (diff) | |
download | op-kernel-dev-f9cfa6305198f190a685e45a3d78140ea8f298a9.zip op-kernel-dev-f9cfa6305198f190a685e45a3d78140ea8f298a9.tar.gz |
clk: 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>
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-wm831x.c')
-rw-r--r-- | drivers/clk/clk-wm831x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/clk-wm831x.c b/drivers/clk/clk-wm831x.c index e7b7765..3cbd662 100644 --- a/drivers/clk/clk-wm831x.c +++ b/drivers/clk/clk-wm831x.c @@ -412,7 +412,7 @@ static int __devexit wm831x_clk_remove(struct platform_device *pdev) static struct platform_driver wm831x_clk_driver = { .probe = wm831x_clk_probe, - .remove = __devexit_p(wm831x_clk_remove), + .remove = wm831x_clk_remove, .driver = { .name = "wm831x-clk", .owner = THIS_MODULE, |