diff options
author | Michael Walle <mwalle@kernel.org> | 2025-03-12 08:37:50 +0100 |
---|---|---|
committer | Jerome Forissier <jerome.forissier@linaro.org> | 2025-03-31 09:46:25 +0200 |
commit | 6d66a72a0acbbdcaed89bcbfabdbd86db37e49ac (patch) | |
tree | 75b99b2f2cc1aaed167480b4331866929841aa05 | |
parent | 5e74863ad6613df9c69c576910b536e885083d65 (diff) |
net: lwip: remove superfluous newline at tftp help text
The help text has a newline at the end which will lead to an empty
line after the tftpboot when printing the help overview. Remove it.
Fixes: 4d4d7838127e ("net: lwip: add TFTP support and tftpboot command")
Signed-off-by: Michael Walle <mwalle@kernel.org>
Reviewed-by: Jerome Forissier <jerome.forissier@linaro.org>
-rw-r--r-- | cmd/net-lwip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/net-lwip.c b/cmd/net-lwip.c index 0fd446ecb20..249556243d6 100644 --- a/cmd/net-lwip.c +++ b/cmd/net-lwip.c @@ -17,7 +17,7 @@ U_BOOT_CMD(ping, 2, 1, do_ping, "send ICMP ECHO_REQUEST to network host", #if defined(CONFIG_CMD_TFTPBOOT) U_BOOT_CMD(tftpboot, 3, 0, do_tftpb, - "boot image via network using TFTP protocol\n", + "boot image via network using TFTP protocol", "[loadAddress] [[hostIPaddr:]bootfilename]"); #endif |