aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/clk/Kconfig15
1 files changed, 6 insertions, 9 deletions
diff --git a/drivers/clk/Kconfig b/drivers/clk/Kconfig
index 2eaf17ed2791..165e1febae53 100644
--- a/drivers/clk/Kconfig
+++ b/drivers/clk/Kconfig
@@ -9,21 +9,18 @@ config HAVE_CLK_PREPARE
9config HAVE_MACH_CLKDEV 9config HAVE_MACH_CLKDEV
10 bool 10 bool
11 11
12menuconfig COMMON_CLK 12config COMMON_CLK
13 bool "Common Clock Framework" 13 bool
14 select HAVE_CLK_PREPARE 14 select HAVE_CLK_PREPARE
15 ---help--- 15 ---help---
16 The common clock framework is a single definition of struct 16 The common clock framework is a single definition of struct
17 clk, useful across many platforms, as well as an 17 clk, useful across many platforms, as well as an
18 implementation of the clock API in include/linux/clk.h. 18 implementation of the clock API in include/linux/clk.h.
19 Architectures utilizing the common struct clk should select 19 Architectures utilizing the common struct clk should select
20 this automatically, but it may be necessary to manually select 20 this option.
21 this option for loadable modules requiring the common clock
22 framework.
23
24 If in doubt, say "N".
25 21
26if COMMON_CLK 22menu "Common Clock Framework"
23 depends on COMMON_CLK
27 24
28config COMMON_CLK_DISABLE_UNUSED 25config COMMON_CLK_DISABLE_UNUSED
29 bool "Disabled unused clocks at boot" 26 bool "Disabled unused clocks at boot"
@@ -47,4 +44,4 @@ config COMMON_CLK_DEBUG
47 clk_flags, clk_prepare_count, clk_enable_count & 44 clk_flags, clk_prepare_count, clk_enable_count &
48 clk_notifier_count. 45 clk_notifier_count.
49 46
50endif 47endmenu