diff options
author | Tom Rini <trini@konsulko.com> | 2022-05-05 19:37:22 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-05-05 19:37:22 -0400 |
commit | 03b873b4f41010e4f85a72dd59016bb0b123dde1 (patch) | |
tree | 3ea6ba397b9ce3db7286537be078944c6daa23b8 /cmd/fdt.c | |
parent | 5d834bfa5fa61dc9dff94a92672c0a1185cb3a83 (diff) | |
parent | aa5ea20c71921e062aa91d5c7f924cef5d742ec2 (diff) |
Merge branch '2022-05-05-assorted-cleanups-and-fixes'
- Assorted minor code cleanups.
- Clean-up the reset uclass code slightly and fix some issues with a
lack of handlers for a case in the driver.
- Y2038 RTC fix
Diffstat (limited to 'cmd/fdt.c')
-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 |