]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
sandbox: Convert sb command to use new macro
authorSimon Glass <sjg@chromium.org>
Mon, 28 Oct 2024 12:47:55 +0000 (13:47 +0100)
committerTom Rini <trini@konsulko.com>
Mon, 4 Nov 2024 03:27:12 +0000 (21:27 -0600)
Ise the new U_BOOT_CMD_WITH_SUBCMDS() macro instead of writing the code
out manually.

Signed-off-by: Simon Glass <sjg@chromium.org>
cmd/sb.c

index db485fddfcaabace722f9f8fee7afb085b3354c1..9dbb53275b3b4a2bf17f63c68a7ffeb4cfde5c42 100644 (file)
--- a/cmd/sb.c
+++ b/cmd/sb.c
@@ -40,29 +40,10 @@ static int do_sb_state(struct cmd_tbl *cmdtp, int flag, int argc,
        return 0;
 }
 
-static struct cmd_tbl cmd_sb_sub[] = {
-       U_BOOT_CMD_MKENT(handoff, 1, 0, do_sb_handoff, "", ""),
-       U_BOOT_CMD_MKENT(state, 1, 0, do_sb_state, "", ""),
-};
-
-static int do_sb(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
-{
-       struct cmd_tbl *c;
-
-       /* Skip past 'sb' */
-       argc--;
-       argv++;
-
-       c = find_cmd_tbl(argv[0], cmd_sb_sub, ARRAY_SIZE(cmd_sb_sub));
-       if (c)
-               return c->cmd(cmdtp, flag, argc, argv);
-       else
-               return CMD_RET_USAGE;
-}
-
-U_BOOT_CMD(
-       sb,     8,      1,      do_sb,
-       "Sandbox status commands",
+U_BOOT_LONGHELP(sb,
        "handoff     - Show handoff data received from SPL\n"
-       "sb state       - Show sandbox state"
-);
+       "sb state       - Show sandbox state");
+
+U_BOOT_CMD_WITH_SUBCMDS(sb, "Sandbox status commands", sb_help_text,
+       U_BOOT_SUBCMD_MKENT(handoff, 1, 1, do_sb_handoff),
+       U_BOOT_SUBCMD_MKENT(state, 1, 1, do_sb_state));