Skip to content

Commit

Permalink
clk: remove use of __devexit_p
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
wfp5p authored and gregkh committed Nov 28, 2012
1 parent 164dce8 commit f9cfa63
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion drivers/clk/clk-max77686.c
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ static struct platform_driver max77686_clk_driver = {
.owner = THIS_MODULE,
},
.probe = max77686_clk_probe,
.remove = __devexit_p(max77686_clk_remove),
.remove = max77686_clk_remove,
.id_table = max77686_clk_id,
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/clk/clk-wm831x.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit f9cfa63

Please sign in to comment.