From: Stefan Roese Date: Fri, 28 Oct 2022 12:46:29 +0000 (+0200) Subject: mips: mtmips: spl/Kconfig: Set CONFIG_SPL_PAD_TO to 0x0 for ARCH_MTMIPS X-Git-Tag: baikal/mips/sdk5.8.2~5^2~160^2 X-Git-Url: https://git.baikalelectronics.ru/?a=commitdiff_plain;h=f246b1ccf740b60a2be7997a266cb2634b289a84;p=uboot.git mips: mtmips: spl/Kconfig: Set CONFIG_SPL_PAD_TO to 0x0 for ARCH_MTMIPS It was noticed that while converting CONFIG_SPL_PAD_TO to Kconfig its value for the MIPS MT762x/8x targets got not ported correctly. Its default is not 0x10000 instead of 0x0. This patch fixes this issue. Fixes: 4f2244201417 ("Convert CONFIG_SPL_PAD_TO et al to Kconfig") Signed-off-by: Stefan Roese Cc: Ruben Winters Cc: Weijie Gao Cc: Daniel Schwierzeck Cc: Tom Rini --- diff --git a/common/spl/Kconfig b/common/spl/Kconfig index b738c749ff..05181bdba3 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -98,6 +98,7 @@ config SPL_PAD_TO default 0x11000 if ARCH_MX7 || (ARCH_MX6 && !MX6_OCRAM_256KB) default 0x10000 if ARCH_KEYSTONE default 0x8000 if ARCH_SUNXI && !MACH_SUN50I_H616 + default 0x0 if ARCH_MTMIPS default TPL_MAX_SIZE if TPL_MAX_SIZE > SPL_MAX_SIZE default SPL_MAX_SIZE help