diff options
author | Tom Rini <trini@konsulko.com> | 2023-10-07 15:13:08 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-10-16 10:24:58 -0400 |
commit | 3616218b5acea74011aea2d14aa1f6366f242849 (patch) | |
tree | ccf5fd9d448069e418752519909c8333d66ee0e0 /board/freescale/common | |
parent | dec5777fffcc6f9e97a20bc23fc7353b30b70ed5 (diff) | |
download | u-boot-3616218b5acea74011aea2d14aa1f6366f242849.zip u-boot-3616218b5acea74011aea2d14aa1f6366f242849.tar.gz u-boot-3616218b5acea74011aea2d14aa1f6366f242849.tar.bz2 |
cmd: Convert existing long help messages to the new macro
- Generally we just drop the #ifdef CONFIG_SYS_LONGHELP and endif lines
and use U_BOOT_LONGHELP to declare the same variable name as before
- In a few places, either rename the variable to follow convention or
introduce the variable as it was being done inline before.
Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/freescale/common')
-rw-r--r-- | board/freescale/common/ngpixis.c | 6 | ||||
-rw-r--r-- | board/freescale/common/sys_eeprom.c | 10 |
2 files changed, 5 insertions, 11 deletions
diff --git a/board/freescale/common/ngpixis.c b/board/freescale/common/ngpixis.c index 37a6f77..7be1cce 100644 --- a/board/freescale/common/ngpixis.c +++ b/board/freescale/common/ngpixis.c @@ -234,15 +234,13 @@ int pixis_reset_cmd(struct cmd_tbl *cmdtp, int flag, int argc, return 0; } -#ifdef CONFIG_SYS_LONGHELP -static char pixis_help_text[] = +U_BOOT_LONGHELP(pixis, "- hard reset to default bank\n" "pixis_reset altbank - reset to alternate bank\n" #ifdef DEBUG "pixis_reset dump - display the PIXIS registers\n" #endif - "pixis_reset sysclk <SYSCLK_freq> - reset with SYSCLK frequency(KHz)\n"; -#endif + "pixis_reset sysclk <SYSCLK_freq> - reset with SYSCLK frequency(KHz)\n"); U_BOOT_CMD( pixis_reset, CONFIG_SYS_MAXARGS, 1, pixis_reset_cmd, diff --git a/board/freescale/common/sys_eeprom.c b/board/freescale/common/sys_eeprom.c index 9363251..64139d4 100644 --- a/board/freescale/common/sys_eeprom.c +++ b/board/freescale/common/sys_eeprom.c @@ -624,8 +624,7 @@ unsigned int get_cpu_board_revision(void) } #endif -#ifdef CONFIG_SYS_LONGHELP -static char booti_help_text[] = +U_BOOT_LONGHELP(mac, "[read|save|id|num|errata|date|ports|port_number]\n" "mac read\n" " - read EEPROM content into memory data structure\n" @@ -642,12 +641,9 @@ static char booti_help_text[] = "mac ports N\n" " - program the number of network ports to integer N\n" "mac X string\n" - " - program MAC addr for port X [X=0,1..] to colon separated string"; -#else - ""; -#endif + " - program MAC addr for port X [X=0,1..] to colon separated string"); U_BOOT_CMD( mac, 3, 1, do_mac, "display and program the system ID and MAC addresses in EEPROM", - booti_help_text); + mac_help_text); |