clk: Remove unneeded semicolons
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>
This commit is contained in:
parent
cb2eb7de38
commit
90c53547fc
@ -1685,7 +1685,7 @@ static struct clk_core *__clk_init_parent(struct clk_core *core)
|
|||||||
"%s: multi-parent clocks must implement .get_parent\n",
|
"%s: multi-parent clocks must implement .get_parent\n",
|
||||||
__func__);
|
__func__);
|
||||||
goto out;
|
goto out;
|
||||||
};
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Do our best to cache parent clocks in core->parents. This prevents
|
* Do our best to cache parent clocks in core->parents. This prevents
|
||||||
|
@ -230,7 +230,7 @@ static int hi6220_stub_clk_probe(struct platform_device *pdev)
|
|||||||
if (IS_ERR(stub_clk->mbox)) {
|
if (IS_ERR(stub_clk->mbox)) {
|
||||||
dev_err(dev, "failed get mailbox channel\n");
|
dev_err(dev, "failed get mailbox channel\n");
|
||||||
return PTR_ERR(stub_clk->mbox);
|
return PTR_ERR(stub_clk->mbox);
|
||||||
};
|
}
|
||||||
|
|
||||||
init.name = "acpu0";
|
init.name = "acpu0";
|
||||||
init.ops = &hi6220_stub_clk_ops;
|
init.ops = &hi6220_stub_clk_ops;
|
||||||
|
@ -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,
|
clk_data.clks[2+n] = clk_register_fixed_factor(NULL, rclk_name,
|
||||||
cpuclk_name, 0, mult, div);
|
cpuclk_name, 0, mult, div);
|
||||||
WARN_ON(IS_ERR(clk_data.clks[2+n]));
|
WARN_ON(IS_ERR(clk_data.clks[2+n]));
|
||||||
};
|
}
|
||||||
|
|
||||||
/* Register optional refclk */
|
/* Register optional refclk */
|
||||||
if (desc->get_refclk_freq) {
|
if (desc->get_refclk_freq) {
|
||||||
|
Loading…
Reference in New Issue
Block a user