summaryrefslogtreecommitdiffstats
path: root/drivers/clk
diff options
context:
space:
mode:
authorRob Herring <rob.herring@calxeda.com>2012-07-18 11:52:23 +0800
committerMike Turquette <mturquette@linaro.org>2012-07-19 14:07:56 -0700
commit137f8a7213d80c1388ca48280c1ef0856b6fec30 (patch)
treee304419eda442ca03a9997d6fdef12ef69b50830 /drivers/clk
parent9f1612d351a8e57d3d694e828641d3e4eeb224f8 (diff)
downloadlinux-137f8a7213d80c1388ca48280c1ef0856b6fec30.tar.gz
linux-137f8a7213d80c1388ca48280c1ef0856b6fec30.tar.xz
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 'drivers/clk')
-rw-r--r--drivers/clk/clkdev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/clkdev.c b/drivers/clk/clkdev.c
index 69085e02bd58..d423c9bdd71a 100644
--- a/drivers/clk/clkdev.c
+++ b/drivers/clk/clkdev.c
@@ -24,7 +24,7 @@
static LIST_HEAD(clocks);
static DEFINE_MUTEX(clocks_mutex);
-#ifdef CONFIG_OF
+#if defined(CONFIG_OF) && defined(CONFIG_COMMON_CLK)
struct clk *of_clk_get(struct device_node *np, int index)
{
struct of_phandle_args clkspec;