diff options
author | Kevin Hilman <khilman@ti.com> | 2011-03-23 17:00:21 -0700 |
---|---|---|
committer | Kevin Hilman <khilman@ti.com> | 2011-09-15 11:39:09 -0700 |
commit | 37efca7e9deacf3c11bda82df5b7594f098daa69 (patch) | |
tree | c52a77d2bde0dec9a4ae1ca6e8a0f45b3993ae96 /arch/arm/mach-omap2/voltage.c | |
parent | ace19ffa9a580c7b3d2a7cd4bb9fda6071394d25 (diff) | |
download | linux-37efca7e9deacf3c11bda82df5b7594f098daa69.tar.gz linux-37efca7e9deacf3c11bda82df5b7594f098daa69.tar.bz2 linux-37efca7e9deacf3c11bda82df5b7594f098daa69.zip |
OMAP3+: voltage: add scalable flag to voltagedomain
Add a 'bool scalable' flag to the struct powerdomain and set it for
the scalable domains on OMAP3 and OMAP4.
Signed-off-by: Kevin Hilman <khilman@ti.com>
Diffstat (limited to 'arch/arm/mach-omap2/voltage.c')
-rw-r--r-- | arch/arm/mach-omap2/voltage.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/voltage.c b/arch/arm/mach-omap2/voltage.c index 4f0361a23ff6..48a2593878c6 100644 --- a/arch/arm/mach-omap2/voltage.c +++ b/arch/arm/mach-omap2/voltage.c @@ -1054,6 +1054,9 @@ int __init omap_voltage_late_init(void) pr_err("%s: Unable to create voltage debugfs main dir\n", __func__); list_for_each_entry(voltdm, &voltdm_list, node) { + if (!voltdm->scalable) + continue; + if (voltdm->vdd) { if (omap_vdd_data_configure(voltdm)) continue; |