mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-29 08:01:08 +00:00
rockchip: rk3288: fix FREF_MIN_HZ constant
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>
This commit is contained in:
parent
b339b5dbca
commit
c3f03ffbe3
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ enum {
|
|||
OUTPUT_MAX_HZ = 2200U * 1000000,
|
||||
OUTPUT_MIN_HZ = 27500000,
|
||||
FREF_MAX_HZ = 2200U * 1000000,
|
||||
FREF_MIN_HZ = 269 * 1000000,
|
||||
FREF_MIN_HZ = 269 * 1000,
|
||||
};
|
||||
|
||||
enum {
|
||||
|
|
Loading…
Reference in a new issue