diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2015-07-15 22:03:52 +0300 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2015-07-28 21:58:37 +0300 |
commit | 3fe6d697420c706b640730dbbae17f48b3aad506 (patch) | |
tree | 5b8631c596934c3696e7d79b123abea93908f7a0 /drivers/clk/ti/clk.c | |
parent | f645f72d876586c4950dcd5bf516744db0aeb30b (diff) | |
download | linux-3fe6d697420c706b640730dbbae17f48b3aad506.tar.xz |
clk: ti: Mark ti_clk_features static
This variable isn't exported outside of this file so mark it
static. Silences the following sparse warning:
drivers/clk/ti/clk.c:36:24: warning: symbol 'ti_clk_features' was not declared. Should it be static?
Acked-by: Tero Kristo <t-kristo@ti.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'drivers/clk/ti/clk.c')
-rw-r--r-- | drivers/clk/ti/clk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/ti/clk.c b/drivers/clk/ti/clk.c index 521e330e3046..0d8861cf21a8 100644 --- a/drivers/clk/ti/clk.c +++ b/drivers/clk/ti/clk.c @@ -32,7 +32,7 @@ struct ti_clk_ll_ops *ti_clk_ll_ops; static struct device_node *clocks_node_ptr[CLK_MAX_MEMMAPS]; -struct ti_clk_features ti_clk_features; +static struct ti_clk_features ti_clk_features; struct clk_iomap { struct regmap *regmap; |