From: Patrice Chotard Date: Thu, 25 Aug 2022 07:14:57 +0000 (+0200) Subject: configs: stih410-b2260: Fix SYS_HZ_CLOCK value X-Git-Tag: v2025.01-rc5-pxa1908~1286^2~2 X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=29e03c98cfe196e3339090b07566d9889774ca0e;p=u-boot.git 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 Reviewed-by: Grzegorz Szymaszek --- diff --git a/include/configs/stih410-b2260.h b/include/configs/stih410-b2260.h index b1a011bacb..1e966a2322 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 */