From: Link Mauve Date: Sat, 27 Dec 2025 18:18:48 +0000 (+0100) Subject: Add missing “net” prefix in help net X-Git-Tag: v2026.04-rc1~40^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7d650e7f90892e3ed1c79bab88955bbbaeb660e4;p=thirdparty%2Fu-boot.git Add missing “net” prefix in help net The usage of the net sub-system was missing the complete command for “net stats”. Signed-off-by: Link Mauve Reviewed-by: Jerome Forissier --- diff --git a/cmd/net-common.c b/cmd/net-common.c index 1c6f11cd435..6f33d15d695 100644 --- a/cmd/net-common.c +++ b/cmd/net-common.c @@ -103,4 +103,4 @@ static int do_net(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) U_BOOT_CMD(net, 3, 1, do_net, "NET sub-system", "list - list available devices\n" - "stats - dump statistics for specified device\n"); + "net stats - dump statistics for specified device\n");