projects
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
32d4060
)
MLK-14839-1 mx6: Fix wrong CPU frequency
author
Ye Li
<ye.li@nxp.com>
Tue, 9 May 2017 09:27:48 +0000
(
04:27
-0500)
committer
Ye Li
<ye.li@nxp.com>
Tue, 9 May 2017 09:27:48 +0000
(
04:27
-0500)
Fix incorrect value for 696MHz CPU frequency on i.MX6UL.
Signed-off-by: Ye Li <ye.li@nxp.com>
arch/arm/cpu/armv7/mx6/soc.c
patch
|
blob
|
history
diff --git
a/arch/arm/cpu/armv7/mx6/soc.c
b/arch/arm/cpu/armv7/mx6/soc.c
index
091ce51
..
be34786
100644
(file)
--- a/
arch/arm/cpu/armv7/mx6/soc.c
+++ b/
arch/arm/cpu/armv7/mx6/soc.c
@@
-134,7
+134,7
@@
u32 get_cpu_speed_grade_hz(void)
if (val == OCOTP_CFG3_SPEED_528MHZ)
return 528000000;
else if (val == OCOTP_CFG3_SPEED_696MHZ)
- return 69600000;
+ return 69600000
0
;
else
return 0;
}