From: Simon Glass Date: Sun, 5 Feb 2023 22:39:36 +0000 (-0700) Subject: Correct SPL use of DISPLAY_CPUINFO X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=f27a545b8f63e8b85ac7cb1dd547bb274c30afea;p=u-boot.git Correct SPL use of DISPLAY_CPUINFO This converts 1 usage of this option to the non-SPL form, since there is no SPL_DISPLAY_CPUINFO defined in Kconfig Signed-off-by: Simon Glass --- diff --git a/arch/arm/mach-rockchip/cpu-info.c b/arch/arm/mach-rockchip/cpu-info.c index d0f030109f..dac24910e0 100644 --- a/arch/arm/mach-rockchip/cpu-info.c +++ b/arch/arm/mach-rockchip/cpu-info.c @@ -44,7 +44,7 @@ char *get_reset_cause(void) return cause; } -#if CONFIG_IS_ENABLED(DISPLAY_CPUINFO) +#if IS_ENABLED(CONFIG_DISPLAY_CPUINFO) int print_cpuinfo(void) { char *cause = get_reset_cause();