diff options
author | Nishanth Menon <nm@ti.com> | 2013-10-16 11:39:01 -0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2013-10-22 11:09:27 -0400 |
commit | 92d51856d7405fa55bcf3d6f20d7e97e0bf2656c (patch) | |
tree | 6e2a7f18614e9af083377591dc6b1aa2c010d5ba /arch/arm | |
parent | 06ff74fd197aa8205443cf64b94383802602e320 (diff) |
ARM: OMAP3+: do not register non-dt OPP tables for device tree boot
OMAP3+ supports both device tree and non-device tree boot.
Device tree bindings for OMAP3+ is supposed to be added via dts following:
Documentation/devicetree/bindings/power/opp.txt
Since we now have device tree entries for OMAP3+ cpu OPPs,
The current code wrongly adds duplicate OPPs. So, dont register OPPs
when booting using device tree.
Signed-off-by: Nishanth Menon <nm@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-omap2/opp.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/opp.c b/arch/arm/mach-omap2/opp.c index bd41d59a7cab..82fd8c72f750 100644 --- a/arch/arm/mach-omap2/opp.c +++ b/arch/arm/mach-omap2/opp.c | |||
@@ -17,6 +17,7 @@ | |||
17 | * GNU General Public License for more details. | 17 | * GNU General Public License for more details. |
18 | */ | 18 | */ |
19 | #include <linux/module.h> | 19 | #include <linux/module.h> |
20 | #include <linux/of.h> | ||
20 | #include <linux/opp.h> | 21 | #include <linux/opp.h> |
21 | #include <linux/cpu.h> | 22 | #include <linux/cpu.h> |
22 | 23 | ||
@@ -40,6 +41,9 @@ int __init omap_init_opp_table(struct omap_opp_def *opp_def, | |||
40 | { | 41 | { |
41 | int i, r; | 42 | int i, r; |
42 | 43 | ||
44 | if (of_have_populated_dt()) | ||
45 | return -EINVAL; | ||
46 | |||
43 | if (!opp_def || !opp_def_size) { | 47 | if (!opp_def || !opp_def_size) { |
44 | pr_err("%s: invalid params!\n", __func__); | 48 | pr_err("%s: invalid params!\n", __func__); |
45 | return -EINVAL; | 49 | return -EINVAL; |