summaryrefslogtreecommitdiff
path: root/cmd/cpu.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-02-05 15:40:56 -0700
committerTom Rini <trini@konsulko.com>2023-02-10 07:41:40 -0500
commit5b4d810de73cea31768dfd282667d81243f3d7b9 (patch)
treed791a44c5b883e21e3358f68f9a055c51440d544 /cmd/cpu.c
parente7ec875dd10ae97c4ce240c30c306395598de709 (diff)
downloadu-boot-5b4d810de73cea31768dfd282667d81243f3d7b9.tar.gz
u-boot-5b4d810de73cea31768dfd282667d81243f3d7b9.tar.bz2
u-boot-5b4d810de73cea31768dfd282667d81243f3d7b9.zip
Correct SPL uses of SYS_LONGHELP
This converts 5 usages of this option to the non-SPL form, since there is no SPL_SYS_LONGHELP defined in Kconfig Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'cmd/cpu.c')
-rw-r--r--cmd/cpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/cpu.c b/cmd/cpu.c
index a09736e1bb..314852440f 100644
--- a/cmd/cpu.c
+++ b/cmd/cpu.c
@@ -83,7 +83,7 @@ static int do_cpu_detail(struct cmd_tbl *cmdtp, int flag, int argc,
return 0;
}
-#if CONFIG_IS_ENABLED(SYS_LONGHELP)
+#if IS_ENABLED(CONFIG_SYS_LONGHELP)
static char cpu_help_text[] =
"list - list available CPUs\n"
"cpu detail - show CPU detail"