aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorRob Herring <rob.herring@calxeda.com>2012-07-17 23:52:23 -0400
committerMike Turquette <mturquette@linaro.org>2012-07-19 17:07:56 -0400
commit137f8a7213d80c1388ca48280c1ef0856b6fec30 (patch)
treee304419eda442ca03a9997d6fdef12ef69b50830 /include
parent9f1612d351a8e57d3d694e828641d3e4eeb224f8 (diff)
clk: fix compile for OF && !COMMON_CLK
With commit 766e6a4ec602d0c107 (clk: add DT clock binding support), compiling with OF && !COMMON_CLK is broken. Reported-by: Alexandre Pereira da Silva <aletes.xgr@gmail.com> Reported-by: Prashant Gaikwad <pgaikwad@nvidia.com> Signed-off-by: Rob Herring <rob.herring@calxeda.com> Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'include')
-rw-r--r--include/linux/clk.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/clk.h b/include/linux/clk.h
index 071e24083dc..6587b528058 100644
--- a/include/linux/clk.h
+++ b/include/linux/clk.h
@@ -314,7 +314,7 @@ int clk_add_alias(const char *alias, const char *alias_dev_name, char *id,
314struct device_node; 314struct device_node;
315struct of_phandle_args; 315struct of_phandle_args;
316 316
317#ifdef CONFIG_OF 317#if defined(CONFIG_OF) && defined(CONFIG_COMMON_CLK)
318struct clk *of_clk_get(struct device_node *np, int index); 318struct clk *of_clk_get(struct device_node *np, int index);
319struct clk *of_clk_get_by_name(struct device_node *np, const char *name); 319struct clk *of_clk_get_by_name(struct device_node *np, const char *name);
320struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec); 320struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec);