From: Ioana Ciornei Date: Wed, 1 Apr 2026 15:04:44 +0000 (+0300) Subject: drivers: net: fsl-mc: cleanup the fsl_mc command help text X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d3c0f53d65eefa9081be243e66a03e38d869151d;p=thirdparty%2Fu-boot.git drivers: net: fsl-mc: cleanup the fsl_mc command help text All the parameters that can be currently passed to the fsl_mc command are positional arguments which are mandatory. This is not perfectly clear when reading the help text because of the use of square brackets. Fix this by changing the square brackets, which are commonly used for optional parameters, with < .. >. Signed-off-by: Ioana Ciornei Signed-off-by: Peng Fan --- diff --git a/drivers/net/fsl-mc/mc.c b/drivers/net/fsl-mc/mc.c index 6e42fde536a..039375e5dfd 100644 --- a/drivers/net/fsl-mc/mc.c +++ b/drivers/net/fsl-mc/mc.c @@ -2070,12 +2070,12 @@ static int do_fsl_mc(struct cmd_tbl *cmdtp, int flag, int argc, U_BOOT_CMD( fsl_mc, CONFIG_SYS_MAXARGS, 1, do_fsl_mc, "DPAA2 command to manage Management Complex (MC)", - "start mc [FW_addr] [DPC_addr] - Start Management Complex\n" - "fsl_mc apply DPL [DPL_addr] - Apply DPL file\n" - "fsl_mc lazyapply DPL [DPL_addr] - Apply DPL file on exit\n" - "fsl_mc apply spb [spb_addr] - Apply SPB Soft Parser Blob\n" - "fsl_mc start aiop [FW_addr] - Start AIOP\n" - "fsl_mc dump_log - Dump MC Log\n" + "fsl_mc start mc - Start the Management Complex firmware\n" + "fsl_mc apply dpl - Apply the DPL (Data Path Layout) file\n" + "fsl_mc lazyapply dpl - Apply the DPL (Data Path Layout) file on exit\n" + "fsl_mc apply spb - Apply the SPB Soft Parser Blob\n" + "fsl_mc start aiop - Start AIOP\n" + "fsl_mc dump_log - Dump the MC Log\n" ); void mc_env_boot(void)