diff options
| author | Simon Glass <[email protected]> | 2023-02-05 15:39:36 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-02-09 16:32:26 -0500 |
| commit | f27a545b8f63e8b85ac7cb1dd547bb274c30afea (patch) | |
| tree | d92f4174b9f2b1afc6b3447bcad8f32828868a0b | |
| parent | 43512276da480b88eb432aca08e808d56893f166 (diff) | |
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 <[email protected]>
| -rw-r--r-- | arch/arm/mach-rockchip/cpu-info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-rockchip/cpu-info.c b/arch/arm/mach-rockchip/cpu-info.c index d0f030109f4..dac24910e0c 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(); |
