projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b339b5d
)
rockchip: rk3288: fix FREF_MIN_HZ constant
author
Heiko Stübner
<heiko@sntech.de>
Fri, 15 Jul 2016 22:17:17 +0000
(
00:17
+0200)
committer
Simon Glass
<sjg@chromium.org>
Tue, 26 Jul 2016 02:44:20 +0000
(20:44 -0600)
According to the TRM the minimum FREF frequency is 269kHz not MHz.
Adapt the constant accordingly.
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Acked-by: Simon Glass <sjg@chromium.org>
drivers/clk/clk_rk3288.c
patch
|
blob
|
history
diff --git
a/drivers/clk/clk_rk3288.c
b/drivers/clk/clk_rk3288.c
index dece4bcf4e54484bbac062fc89eb1ef490757026..a41cf8b9f828739641999435d3c1b318c78b0ef0 100644
(file)
--- a/
drivers/clk/clk_rk3288.c
+++ b/
drivers/clk/clk_rk3288.c
@@
-47,7
+47,7
@@
enum {
OUTPUT_MAX_HZ = 2200U * 1000000,
OUTPUT_MIN_HZ = 27500000,
FREF_MAX_HZ = 2200U * 1000000,
- FREF_MIN_HZ = 269 * 1000
000
,
+ FREF_MIN_HZ = 269 * 1000,
};
enum {