Skip to content

Commit

Permalink
clk: remove use of __devexit
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Nov 28, 2012
1 parent 018ae93 commit 1fc7ad5
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 @@ -199,7 +199,7 @@ static int max77686_clk_probe(struct platform_device *pdev)
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;
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 @@ -399,7 +399,7 @@ static int wm831x_clk_probe(struct platform_device *pdev)
return ret;
}

static int __devexit wm831x_clk_remove(struct platform_device *pdev)
static int wm831x_clk_remove(struct platform_device *pdev)
{
struct wm831x_clk *clkdata = dev_get_drvdata(&pdev->dev);

Expand Down

0 comments on commit 1fc7ad5

Please sign in to comment.