diff options
| author | Heinrich Schuchardt <[email protected]> | 2022-04-25 18:35:05 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-05-05 15:06:02 -0400 |
| commit | e4269636bec4e64dc363e237c2d1efa0e8645310 (patch) | |
| tree | f97e762c9148de7557f445116450175b8cc117c6 /cmd | |
| parent | 90c52423be9933d5e85c20c6a0266b2c565f030a (diff) | |
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 <[email protected]>
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/fdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/fdt.c b/cmd/fdt.c index c07342cf25f..842e6cb634b 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] <addr> [<length>] - Set the [control] fdt location to <addr>\n" + "addr [-c] [-q] <addr> [<size>] - Set the [control] fdt location to <addr>\n" #ifdef CONFIG_OF_LIBFDT_OVERLAY "fdt apply <addr> - Apply overlay to the DT\n" #endif |
