diff options
author | Patrice Chotard | 2022-08-25 09:14:57 +0200 |
---|---|---|
committer | Patrick Delaunay | 2022-09-06 14:09:45 +0200 |
commit | 29e03c98cfe196e3339090b07566d9889774ca0e (patch) | |
tree | 8226b9e8703c1a434f27e3e383350d76d180446c /include/configs/stih410-b2260.h | |
parent | 78e7cda76aba824e35df7162020d0ccc3ef06e88 (diff) |
configs: stih410-b2260: Fix SYS_HZ_CLOCK value
SYS_HZ_CLOCK was wrongly set to 1GHz whereas it's set to 750MHz
by default by bootrom.
Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
Reviewed-by: Grzegorz Szymaszek <gszymaszek@short.pl>
Diffstat (limited to 'include/configs/stih410-b2260.h')
-rw-r--r-- | include/configs/stih410-b2260.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/stih410-b2260.h b/include/configs/stih410-b2260.h index b1a011bacb2..1e966a23227 100644 --- a/include/configs/stih410-b2260.h +++ b/include/configs/stih410-b2260.h @@ -14,7 +14,7 @@ #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1 #define PHYS_SDRAM_1_SIZE 0x3E000000 -#define CONFIG_SYS_HZ_CLOCK 1000000000 /* 1 GHz */ +#define CONFIG_SYS_HZ_CLOCK 750000000 /* 750 MHz */ /* Environment */ |