diff options
author | Rob Herring <robh@kernel.org> | 2014-05-12 12:41:19 -0400 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2014-05-20 15:25:24 -0400 |
commit | 826d8958419ae924ae2af12d214ee599ee713e91 (patch) | |
tree | 6eba1a9e49255fb3f05cfc55831a73b60490af46 | |
parent | 10776b5f48fe7d83e745856c2c8a14ab0a710bba (diff) |
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>
-rw-r--r-- | drivers/clk/ti/gate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/ti/gate.c b/drivers/clk/ti/gate.c index 3e2999d11d15..58734817d502 100644 --- a/drivers/clk/ti/gate.c +++ b/drivers/clk/ti/gate.c | |||
@@ -221,7 +221,7 @@ static void __init of_ti_gate_clk_setup(struct device_node *node) | |||
221 | { | 221 | { |
222 | _of_ti_gate_clk_setup(node, &omap_gate_clk_ops, NULL); | 222 | _of_ti_gate_clk_setup(node, &omap_gate_clk_ops, NULL); |
223 | } | 223 | } |
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); |
225 | 225 | ||
226 | static void __init of_ti_wait_gate_clk_setup(struct device_node *node) | 226 | static void __init of_ti_wait_gate_clk_setup(struct device_node *node) |
227 | { | 227 | { |