]> Pileus Git - ~andy/linux/commitdiff
clk: remove use of __devinit
authorBill Pemberton <wfp5p@virginia.edu>
Mon, 19 Nov 2012 18:22:52 +0000 (13:22 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 28 Nov 2012 19:31:53 +0000 (11:31 -0800)
CONFIG_HOTPLUG is going away as an option so __devinit 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>
drivers/clk/clk-max77686.c
drivers/clk/clk-wm831x.c

index fff7e6f36ef19962620ac1ed418a2cc380376e04..fe449c25efd14da082f57c17eb556a1ef2ab558b 100644 (file)
@@ -143,7 +143,7 @@ static int max77686_clk_register(struct device *dev,
        return 0;
 }
 
-static __devinit int max77686_clk_probe(struct platform_device *pdev)
+static int max77686_clk_probe(struct platform_device *pdev)
 {
        struct max77686_dev *iodev = dev_get_drvdata(pdev->dev.parent);
        struct max77686_clk **max77686_clks;
index 3cbd662adcf2bbfc3b3541546b68f6286906b6f8..d0f1442fdae21c0883fd2e24ba6ef057ecf1edb5 100644 (file)
@@ -350,7 +350,7 @@ static struct clk_init_data wm831x_clkout_init = {
        .flags = CLK_SET_RATE_PARENT,
 };
 
-static __devinit int wm831x_clk_probe(struct platform_device *pdev)
+static int wm831x_clk_probe(struct platform_device *pdev)
 {
        struct wm831x *wm831x = dev_get_drvdata(pdev->dev.parent);
        struct wm831x_clk *clkdata;