]> git.karo-electronics.de Git - linux-beck.git/commitdiff
clk: Remove unneeded semicolons
authorJavier Martinez Canillas <javier@osg.samsung.com>
Thu, 17 Sep 2015 13:49:29 +0000 (15:49 +0200)
committerStephen Boyd <sboyd@codeaurora.org>
Thu, 17 Sep 2015 18:15:14 +0000 (11:15 -0700)
There are cleary typo errors so can be removed.

Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Acked-by: Leo Yan <leo.yan@linaro.org>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
drivers/clk/clk.c
drivers/clk/hisilicon/clk-hi6220-stub.c
drivers/clk/mvebu/common.c

index 43e2c3ad6c3111ae6d0a83f027b75344c087f5f2..a66a6d433b1f7a6ae128b69641cc0115f713fb63 100644 (file)
@@ -1685,7 +1685,7 @@ static struct clk_core *__clk_init_parent(struct clk_core *core)
                        "%s: multi-parent clocks must implement .get_parent\n",
                        __func__);
                goto out;
-       };
+       }
 
        /*
         * Do our best to cache parent clocks in core->parents.  This prevents
index 2c4add11c1ca379bf594c8d8d2798cf8cdced2a6..8afb40ef40ce81f884de1b0b677b86fc5fb5ed7d 100644 (file)
@@ -230,7 +230,7 @@ static int hi6220_stub_clk_probe(struct platform_device *pdev)
        if (IS_ERR(stub_clk->mbox)) {
                dev_err(dev, "failed get mailbox channel\n");
                return PTR_ERR(stub_clk->mbox);
-       };
+       }
 
        init.name = "acpu0";
        init.ops = &hi6220_stub_clk_ops;
index 4a22429cd7a23b4171f825062ac96abc0f34d311..28aac67e7b92b0c668fee1d2d7c637a708141cef 100644 (file)
@@ -165,7 +165,7 @@ void __init mvebu_coreclk_setup(struct device_node *np,
                clk_data.clks[2+n] = clk_register_fixed_factor(NULL, rclk_name,
                                       cpuclk_name, 0, mult, div);
                WARN_ON(IS_ERR(clk_data.clks[2+n]));
-       };
+       }
 
        /* Register optional refclk */
        if (desc->get_refclk_freq) {