diff options
author | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2022-07-10 17:15:13 +0200 |
---|---|---|
committer | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2022-11-02 21:42:32 +0100 |
commit | ea24b0eacfffa7c3e7d25aa8e3d75d11fb13dca8 (patch) | |
tree | 7669020b0bbc763d619dac8467fba9e5cb54a085 | |
parent | e9dcd5b40236b82672117464564d38511f1f7a0b (diff) | |
download | u-boot-ea24b0eacfffa7c3e7d25aa8e3d75d11fb13dca8.tar.gz |
MIPS: mscc: remove unused CPU_CLOCK_RATE
CPU_CLOCK_RATE is just used once for CONFIG_SYS_MIPS_TIMER_FREQ
which is migrated to Kconfig in the next patch.
Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
Reviewed-by: Stefan Roese <sr@denx.de>
-rw-r--r-- | include/configs/vcoreiii.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/configs/vcoreiii.h b/include/configs/vcoreiii.h index 78a62a8b02..5c5036b8be 100644 --- a/include/configs/vcoreiii.h +++ b/include/configs/vcoreiii.h @@ -13,11 +13,9 @@ #define CONFIG_SYS_INIT_SP_OFFSET 0x400000 #if defined(CONFIG_SOC_LUTON) || defined(CONFIG_SOC_SERVAL) -#define CPU_CLOCK_RATE 416666666 /* Clock for the MIPS core */ #define CONFIG_SYS_MIPS_TIMER_FREQ 208333333 #else -#define CPU_CLOCK_RATE 500000000 /* Clock for the MIPS core */ -#define CONFIG_SYS_MIPS_TIMER_FREQ (CPU_CLOCK_RATE / 2) +#define CONFIG_SYS_MIPS_TIMER_FREQ 250000000 #endif #define CONFIG_SYS_NS16550_CLK CONFIG_SYS_MIPS_TIMER_FREQ |