Skip to content

Commit 826d895

Browse files
committed
clk: ti: add missing semi-colon on CLK_OF_DECLARE
With common OF_DECLARE macros, a semi-colon will be required for CLK_OF_DECLARE. Add the missing semi-colon to ti,gate-clock. Signed-off-by: Rob Herring <robh@kernel.org> Acked-by: Mike Turquette <mturquette@linaro.org>
1 parent 10776b5 commit 826d895

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/clk/ti/gate.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ static void __init of_ti_gate_clk_setup(struct device_node *node)
221221
{
222222
_of_ti_gate_clk_setup(node, &omap_gate_clk_ops, NULL);
223223
}
224-
CLK_OF_DECLARE(ti_gate_clk, "ti,gate-clock", of_ti_gate_clk_setup)
224+
CLK_OF_DECLARE(ti_gate_clk, "ti,gate-clock", of_ti_gate_clk_setup);
225225

226226
static void __init of_ti_wait_gate_clk_setup(struct device_node *node)
227227
{

0 commit comments

Comments
 (0)