diff options
author | Tero Kristo <t-kristo@ti.com> | 2015-03-03 15:13:50 +0200 |
---|---|---|
committer | Tero Kristo <t-kristo@ti.com> | 2015-06-02 12:31:21 +0300 |
commit | 046b7c31668311942a2e431e7983d8ab9874d845 (patch) | |
tree | 972738422cee72d9223b170b098f44c0d9834a45 /include/linux/clk | |
parent | 6f0051da4bb5b35014e1bb326d0a31fcad2369e5 (diff) | |
download | op-kernel-dev-046b7c31668311942a2e431e7983d8ab9874d845.zip op-kernel-dev-046b7c31668311942a2e431e7983d8ab9874d845.tar.gz |
ARM: OMAP2+: clock: remove clkdm_control static boolean from code
clkdm_control is used to determine, whether clocks should trigger a
clockdomain transition when they are enabled/disabled. Keep this
functionality intact, but replace this with a clk_features flag
which can be initialized during boot if needed.
Signed-off-by: Tero Kristo <t-kristo@ti.com>
Diffstat (limited to 'include/linux/clk')
-rw-r--r-- | include/linux/clk/ti.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/clk/ti.h b/include/linux/clk/ti.h index f8e5027..fbb65e4 100644 --- a/include/linux/clk/ti.h +++ b/include/linux/clk/ti.h @@ -330,6 +330,7 @@ struct ti_clk_features { #define TI_CLK_DPLL_HAS_FREQSEL BIT(0) #define TI_CLK_DPLL4_DENY_REPROGRAM BIT(1) +#define TI_CLK_DISABLE_CLKDM_CONTROL BIT(2) void ti_clk_setup_features(struct ti_clk_features *features); const struct ti_clk_features *ti_clk_get_features(void); |