From 476ba5ffa412cc170aa20fd135648b8f14a4baef Mon Sep 17 00:00:00 2001 From: Sebastian Hesselbarth Date: Mon, 15 Apr 2013 09:00:14 +0200 Subject: [PATCH] clk: si5351: make clk-si5351 depend on CONFIG_OF Calling clk-si5351 driver non-OF ready was too early. This patch makes clk-si5351 depend on CONFIG_OF again, until things get sorted out. Signed-off-by: Sebastian Hesselbarth Reported-by: Stephen Rothwell Signed-off-by: Mike Turquette [mturquette@linaro.org: fixed spelling of Stephen's name] --- drivers/clk/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/clk/Kconfig b/drivers/clk/Kconfig index 186dd0edca8f..0357ac44638b 100644 --- a/drivers/clk/Kconfig +++ b/drivers/clk/Kconfig @@ -58,6 +58,7 @@ config COMMON_CLK_MAX77686 config COMMON_CLK_SI5351 tristate "Clock driver for SiLabs 5351A/B/C" depends on I2C + depends on OF select REGMAP_I2C select RATIONAL ---help---