From 7d650e7f90892e3ed1c79bab88955bbbaeb660e4 Mon Sep 17 00:00:00 2001 From: Link Mauve Date: Sat, 27 Dec 2025 19:18:48 +0100 Subject: [PATCH] =?UTF-8?q?Add=20missing=20=E2=80=9Cnet=E2=80=9D=20prefix?= =?UTF-8?q?=20in=20help=20net?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The usage of the net sub-system was missing the complete command for “net stats”. Signed-off-by: Link Mauve Reviewed-by: Jerome Forissier --- cmd/net-common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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");