From 06084f6f92a2fa6b2756f4928ddfa27583074d97 Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Mon, 3 Aug 2026 00:08:38 +0200 Subject: [PATCH] cmd: scsi: Drop duplicate leading scsi prefix The SCSI command currently prints the following duplicate prefix: " => scsi scsi - SCSI sub-system Usage: scsi scsi info - show available SCSI devices ^^^^^^^^^ scsi scan - (re-)scan SCSI bus " Drop one copy of the scsi prefix. Fixes: 460c322f13ec ("(re)enabled scsi commands do_scsi() and do_scsiboot() Patch by Denis Peter, 06 Dec 2004") Signed-off-by: Marek Vasut Reviewed-by: Neil Armstrong Reviewed-by: David Lechner --- cmd/scsi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/scsi.c b/cmd/scsi.c index ad7d8a4b664..5e732c1e50a 100644 --- a/cmd/scsi.c +++ b/cmd/scsi.c @@ -45,7 +45,7 @@ static int do_scsi(struct cmd_tbl *cmdtp, int flag, int argc, U_BOOT_CMD( scsi, 5, 1, do_scsi, "SCSI sub-system", - "scsi info - show available SCSI devices\n" + "info - show available SCSI devices\n" "scsi scan - (re-)scan SCSI bus\n" "scsi device [dev] - show or set current device\n" "scsi part [dev] - print partition table of one or all SCSI devices\n"