From 907bcd3a33253515cb1bdc01077e127c6735f74b Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Mon, 15 Mar 2021 18:00:25 +1300 Subject: cmd: Add missing check for CONFIG_SYS_LONGHELP Two commands are missing this check, so compilation fails when building without CONFIG_CMDLINE. Add it. Signed-off-by: Simon Glass --- cmd/bloblist.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cmd/bloblist.c') diff --git a/cmd/bloblist.c b/cmd/bloblist.c index 97b57341617..21e7ff67af2 100644 --- a/cmd/bloblist.c +++ b/cmd/bloblist.c @@ -29,9 +29,11 @@ static int do_bloblist_list(struct cmd_tbl *cmdtp, int flag, int argc, return 0; } +#ifdef CONFIG_SYS_LONGHELP static char bloblist_help_text[] = "info - show information about the bloblist\n" "bloblist list - list blobs in the bloblist"; +#endif U_BOOT_CMD_WITH_SUBCMDS(bloblist, "Bloblists", bloblist_help_text, U_BOOT_SUBCMD_MKENT(info, 1, 1, do_bloblist_info), -- cgit v1.2.3