diff options
author | Tero Kristo <t-kristo@ti.com> | 2014-07-02 10:47:42 +0200 |
---|---|---|
committer | Paul Walmsley <paul@pwsan.com> | 2014-07-15 22:09:06 +0200 |
commit | 512d91cbd990c67df16d0a7b3ff5d35055ac6b39 (patch) | |
tree | d9ebd1366f12859ab6184ffe8595c2649f186cff /arch/arm/mach-omap2/clock.h | |
parent | ARM: OMAP2+: clock/dpll: add private API for checking if DPLL is in bypass (diff) | |
download | linux-512d91cbd990c67df16d0a7b3ff5d35055ac6b39.tar.xz linux-512d91cbd990c67df16d0a7b3ff5d35055ac6b39.zip |
ARM: OMAP2+: clock/dpll: convert bypass check to use clk_features
OMAP2 DPLL code for checking whether DPLL is in bypass mode now uses
clk_features data provided during boot. This avoids the need to use
cpu_is_X type checks runtime, and allows us to eventually move the
clock code under the clock driver.
Signed-off-by: Tero Kristo <t-kristo@ti.com>
Reviewed-by: Mike Turquette <mturquette@linaro.org>
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Diffstat (limited to 'arch/arm/mach-omap2/clock.h')
-rw-r--r-- | arch/arm/mach-omap2/clock.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/clock.h b/arch/arm/mach-omap2/clock.h index 02aa2e3ac036..7b2b099c6a83 100644 --- a/arch/arm/mach-omap2/clock.h +++ b/arch/arm/mach-omap2/clock.h @@ -232,6 +232,7 @@ struct ti_clk_features { long fint_max; long fint_band1_max; long fint_band2_min; + u8 dpll_bypass_vals; }; extern struct ti_clk_features ti_clk_features; |