aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/clk/samsung/clk.c
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2013-04-08 21:35:25 +0900
committerKukjin Kim <kgene.kim@samsung.com>2013-04-08 23:43:12 +0900
commit6cec90826e9a3e505c9df91a62de59078f521dd3 (patch)
treed7f121114b795db01d5a64a30cdc98ee20e75be1 /drivers/clk/samsung/clk.c
parentclk: exynos5250: register display block gate clocks to common clock framework (diff)
downloadlinux-dev-6cec90826e9a3e505c9df91a62de59078f521dd3.tar.xz
linux-dev-6cec90826e9a3e505c9df91a62de59078f521dd3.zip
clk: samsung: Fix compilation error
Fixes the below compilation error during non-dt build. drivers/clk/samsung/clk.c: In function 'samsung_clk_of_register_fixed_ext': drivers/clk/samsung/clk.c:252:2: error: implicit declaration of function 'for_each_matching_node_and_match' [-Werror=implicit-function-declaration] drivers/clk/samsung/clk.c:252:60: error: expected ';' before '{' token Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'drivers/clk/samsung/clk.c')
-rw-r--r--drivers/clk/samsung/clk.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/clk/samsung/clk.c b/drivers/clk/samsung/clk.c
index 3a50d4fe0be9..cd3c40ab50f3 100644
--- a/drivers/clk/samsung/clk.c
+++ b/drivers/clk/samsung/clk.c
@@ -284,6 +284,7 @@ void __init samsung_clk_register_gate(struct samsung_gate_clock *list,
* obtain the clock speed of all external fixed clock sources from device
* tree and register it
*/
+#ifdef CONFIG_OF
void __init samsung_clk_of_register_fixed_ext(
struct samsung_fixed_rate_clock *fixed_rate_clk,
unsigned int nr_fixed_rate_clk,
@@ -300,6 +301,7 @@ void __init samsung_clk_of_register_fixed_ext(
}
samsung_clk_register_fixed_rate(fixed_rate_clk, nr_fixed_rate_clk);
}
+#endif
/* utility function to get the rate of a specified clock */
unsigned long _get_rate(const char *clk_name)