diff options
author | Tom Rini <trini@konsulko.com> | 2023-10-07 12:52:14 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-10-07 12:52:14 -0400 |
commit | a617a03fe394b2f10325745f086f43eb1e1bac01 (patch) | |
tree | 8467fade45721fe6a5d7dceb672e82744a555d12 | |
parent | a75603c1a44d5971d51cda747a3319a7fc52dcea (diff) | |
download | u-boot-TEST/rework-longhelp.tar.gz |
TEMP: Drop const to make size check easierTEST/rework-longhelp
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | include/command.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/command.h b/include/command.h index a836ea795ab..30c0bc2f2e4 100644 --- a/include/command.h +++ b/include/command.h @@ -323,7 +323,7 @@ int cmd_source_script(ulong addr, const char *fit_uname, const char *confname); #endif #define U_BOOT_LONGHELP(_cmdname, text) \ - static __maybe_unused const char _cmdname##_help_text[] = text; + static __maybe_unused char _cmdname##_help_text[] = text; #define U_BOOT_SUBCMDS_DO_CMD(_cmdname) \ static int do_##_cmdname(struct cmd_tbl *cmdtp, int flag, \ |