1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 08:42:12 +02:00

Fix typo in NVME show command

Foramt -> Format

Signed-off-by: Thomas Perl <m@thp.io>
This commit is contained in:
Thomas Perl
2024-05-31 06:48:34 +00:00
committed by Tom Rini
parent 372f97978b
commit 6f5c424177

View File

@@ -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