From: Thomas Perl <m@thp.io>
Date: Fri, 31 May 2024 06:48:34 +0000 (+0000)
Subject: Fix typo in NVME show command
X-Git-Tag: v2025.01-rc5-pxa1908~457
X-Git-Url: http://git.dujemihanovic.xyz/img/html/static/gitweb.css?a=commitdiff_plain;h=6f5c424177de4774b481deed493931f4530d17ae;p=u-boot.git

Fix typo in NVME show command

Foramt -> Format

Signed-off-by: Thomas Perl <m@thp.io>
---

diff --git a/drivers/nvme/nvme_show.c b/drivers/nvme/nvme_show.c
index 72cbac82bc..8dc03fe5bb 100644
--- a/drivers/nvme/nvme_show.c
+++ b/drivers/nvme/nvme_show.c
@@ -68,7 +68,7 @@ static void print_formats(struct nvme_id_ns *id, struct nvme_ns *ns)
 	printf("Blk device %d: LBA Format Support:\n", ns->devnum);
 
 	for (i = 0; i < id->nlbaf; i++) {
-		printf("\tLBA Foramt %d Support: ", i);
+		printf("\tLBA Format %d Support: ", i);
 		if (i == ns->flbas)
 			printf("(current)\n");
 		else