diff options
author | Colin Cross | 2010-10-13 19:16:02 -0700 |
---|---|---|
committer | Colin Cross | 2011-02-21 00:09:12 -0800 |
commit | f035530b799a9c945415ad2139bb6494b542639a (patch) | |
tree | 9d8a383ba001bda4924226e31b5c31939e402de9 /arch/arm/mach-tegra | |
parent | 35c47c3bbaa82b046d645aed2b709ce12ef0e25e (diff) |
ARM: tegra: clock: Initialize clocks that have no enable
Assume that any clock that has no enable op is always on.
Acked-by: Olof Johansson <olof@lixom.net>
Signed-off-by: Colin Cross <ccross@android.com>
Diffstat (limited to 'arch/arm/mach-tegra')
-rw-r--r-- | arch/arm/mach-tegra/clock.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/mach-tegra/clock.c b/arch/arm/mach-tegra/clock.c index f55bb83fb2d3..92bcc2072302 100644 --- a/arch/arm/mach-tegra/clock.c +++ b/arch/arm/mach-tegra/clock.c @@ -166,6 +166,15 @@ void clk_init(struct clk *c) if (c->ops && c->ops->init) c->ops->init(c); + if (!c->ops || !c->ops->enable) { + c->refcnt++; + c->set = 1; + if (c->parent) + c->state = c->parent->state; + else + c->state = ON; + } + clk_recalculate_rate(c); list_add(&c->node, &clocks); |