mx7: Fix the get_cpu_speed_grade_hz() return values
[platform/kernel/u-boot.git] / arch / arm / cpu / armv7 / mx7 / soc.c
index b9fb97b..8cde77b 100644 (file)
@@ -120,11 +120,11 @@ u32 get_cpu_speed_grade_hz(void)
 
        switch(val) {
        case OCOTP_TESTER3_SPEED_800MHZ:
-               return 792000000;
+               return 800000000;
        case OCOTP_TESTER3_SPEED_500MHZ:
                return 500000000;
        case OCOTP_TESTER3_SPEED_1GHZ:
-               return 996000000;
+               return 1000000000;
        }
        return 0;
 }