diff options
-rwxr-xr-x | arch/arm/mach-omap2/opp4xxx_data.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/opp4xxx_data.c b/arch/arm/mach-omap2/opp4xxx_data.c index 7ff30de..21ac13f 100755 --- a/arch/arm/mach-omap2/opp4xxx_data.c +++ b/arch/arm/mach-omap2/opp4xxx_data.c @@ -551,7 +551,9 @@ int __init omap4_opp_init(void) if (!r) { if (omap4_has_mpu_1_2ghz()) omap4_mpu_opp_enable(1200000000); - if (omap4_has_mpu_1_5ghz()) + if (!trimmed) + pr_info("This is DPLL un-trimmed SOM. OPP is limited at 1.2 GHz\n"); + if (omap4_has_mpu_1_5ghz() && trimmed) omap4_mpu_opp_enable(1500000000); } |