summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-02-05 15:40:06 -0700
committerTom Rini <trini@konsulko.com>2023-02-10 07:41:39 -0500
commitb84d23d0cdb6367888ef9edd3c427ad1f7e9f7bc (patch)
tree86547d2dcf153c1f9e34b4457d3bacb58cd8675b /common
parent0e56bc1668f334c648bc13e40cb99e326f727eb3 (diff)
Correct SPL use of HUSH_PARSER
This converts 1 usage of this option to the non-SPL form, since there is no SPL_HUSH_PARSER defined in Kconfig Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common')
-rw-r--r--common/cli.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cli.c b/common/cli.c
index ba45dad2db..9451e6a142 100644
--- a/common/cli.c
+++ b/common/cli.c
@@ -31,7 +31,7 @@
*/
int run_command(const char *cmd, int flag)
{
-#if !CONFIG_IS_ENABLED(HUSH_PARSER)
+#if !IS_ENABLED(CONFIG_HUSH_PARSER)
/*
* cli_run_command can return 0 or 1 for success, so clean up
* its result.