diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2014-01-15 00:43:26 -0500 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2014-02-23 18:04:40 -0500 |
commit | c112c1d8ef2997773368cf5aaf64e89ce6bf75b2 (patch) | |
tree | 1305ec677673159a1cfed406677bd5ec59f0369f | |
parent | 22e5de816b49f1c75c1f1480a99d1c06d46fbe21 (diff) |
clk: ux500: Staticize ux500_twocell_get
ux500_twocell_get is a local symbol.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Acked-by: Lee Jones <lee.jones@linaro.org>
Acked-by: Ulf Hansson <ulf.hansson@linaro.org>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
-rw-r--r-- | drivers/clk/ux500/u8500_of_clk.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/clk/ux500/u8500_of_clk.c b/drivers/clk/ux500/u8500_of_clk.c index cdeff299de26..7b55ef89baa5 100644 --- a/drivers/clk/ux500/u8500_of_clk.c +++ b/drivers/clk/ux500/u8500_of_clk.c | |||
@@ -29,7 +29,8 @@ static struct clk *prcc_kclk[(PRCC_NUM_PERIPH_CLUSTERS + 1) * PRCC_PERIPHS_PER_C | |||
29 | #define PRCC_KCLK_STORE(clk, base, bit) \ | 29 | #define PRCC_KCLK_STORE(clk, base, bit) \ |
30 | prcc_kclk[(base * PRCC_PERIPHS_PER_CLUSTER) + bit] = clk | 30 | prcc_kclk[(base * PRCC_PERIPHS_PER_CLUSTER) + bit] = clk |
31 | 31 | ||
32 | struct clk *ux500_twocell_get(struct of_phandle_args *clkspec, void *data) | 32 | static struct clk *ux500_twocell_get(struct of_phandle_args *clkspec, |
33 | void *data) | ||
33 | { | 34 | { |
34 | struct clk **clk_data = data; | 35 | struct clk **clk_data = data; |
35 | unsigned int base, bit; | 36 | unsigned int base, bit; |