From: Heinrich Schuchardt Date: Mon, 25 Apr 2022 16:35:05 +0000 (+0200) Subject: cmd: fix long text for fdt command X-Git-Url: http://git.dujemihanovic.xyz/img/sics.gif?a=commitdiff_plain;h=e4269636bec4e64dc363e237c2d1efa0e8645310;p=u-boot.git cmd: fix long text for fdt command We don't have an option -cq but two distinct options -c and -q. Fixes: e9496ec37440 ("fdt: Add -q option to fdt addr for distro_bootcmd") Signed-off-by: Heinrich Schuchardt --- diff --git a/cmd/fdt.c b/cmd/fdt.c index c07342cf25..842e6cb634 100644 --- a/cmd/fdt.c +++ b/cmd/fdt.c @@ -1071,7 +1071,7 @@ static int fdt_print(const char *pathp, char *prop, int depth) /********************************************************************/ #ifdef CONFIG_SYS_LONGHELP static char fdt_help_text[] = - "addr [-cq] [] - Set the [control] fdt location to \n" + "addr [-c] [-q] [] - Set the [control] fdt location to \n" #ifdef CONFIG_OF_LIBFDT_OVERLAY "fdt apply - Apply overlay to the DT\n" #endif