From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-1.mimecast.com (us-smtp-delivery-1.mimecast.com [205.139.110.61]) by mx.groups.io with SMTP id smtpd.web10.6462.1581037734322298933 for ; Thu, 06 Feb 2020 17:08:54 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=PU3zbMzl; spf=pass (domain: redhat.com, ip: 205.139.110.61, mailfrom: philmd@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1581037733; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=tHTdFs+4jBzL+7M+JUDtVaYsYHqqWOE5ADG5q0L12SY=; b=PU3zbMzledY6KpmwnCjz/q0x4IHcPhdJ8LSOH770TmUKyo+aRc12O1jY3vVeByqW7eEXOX mzT8ugyjnLO2hpI/bnn+Ev46iHyq6iavAIM7evH2qwnhigGFvlQgtjtuhmu2IaTcIxFPEd K1M0f2jmASlh34DvQiRccM0A5puUN0I= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-132-shnvEwLQO6iRZsbSBIfKNA-1; Thu, 06 Feb 2020 20:08:50 -0500 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 0D4581835A0E; Fri, 7 Feb 2020 01:08:50 +0000 (UTC) Received: from x1w.redhat.com (ovpn-204-120.brq.redhat.com [10.40.204.120]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 70B025C1BB; Fri, 7 Feb 2020 01:08:47 +0000 (UTC) From: =?UTF-8?B?UGhpbGlwcGUgTWF0aGlldS1EYXVkw6k=?= To: devel@edk2.groups.io Cc: Laszlo Ersek , Eric Dong Subject: [PATCH v3 08/78] FatPkg/FatPei: Fix few typos Date: Fri, 7 Feb 2020 02:07:21 +0100 Message-Id: <20200207010831.9046-9-philmd@redhat.com> In-Reply-To: <20200207010831.9046-1-philmd@redhat.com> References: <20200207010831.9046-1-philmd@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-MC-Unique: shnvEwLQO6iRZsbSBIfKNA-1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable From: Antoine Coeur Fix few typos in comments. Cc: Ray Ni Signed-off-by: Antoine Coeur Reviewed-by: Philippe Mathieu-Daude Reviewed-by: Ray Ni Signed-off-by: Philippe Mathieu-Daude --- FatPkg/FatPei/FatLitePeim.h | 2 +- FatPkg/FatPei/FatLiteApi.c | 2 +- FatPkg/FatPei/Mbr.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/FatPkg/FatPei/FatLitePeim.h b/FatPkg/FatPei/FatLitePeim.h index 9cacf74aceeb..0c3c69853ca6 100644 --- a/FatPkg/FatPei/FatLitePeim.h +++ b/FatPkg/FatPei/FatLitePeim.h @@ -185,7 +185,7 @@ typedef struct { =20 /** Finds the recovery file on a FAT volume. - This function finds the the recovery file named FileName on a specified = FAT volume and returns + This function finds the recovery file named FileName on a specified FAT = volume and returns its FileHandle pointer. =20 @param PrivateData Global memory map for accessing global diff --git a/FatPkg/FatPei/FatLiteApi.c b/FatPkg/FatPei/FatLiteApi.c index 8c7c6e52581f..d07422ba93b7 100644 --- a/FatPkg/FatPei/FatLiteApi.c +++ b/FatPkg/FatPei/FatLiteApi.c @@ -591,7 +591,7 @@ LoadRecoveryCapsule ( =20 /** Finds the recovery file on a FAT volume. - This function finds the the recovery file named FileName on a specified = FAT volume and returns + This function finds the recovery file named FileName on a specified FAT = volume and returns its FileHandle pointer. =20 @param PrivateData Global memory map for accessing global diff --git a/FatPkg/FatPei/Mbr.c b/FatPkg/FatPei/Mbr.c index 5b01604c0749..78e73fb811d7 100644 --- a/FatPkg/FatPei/Mbr.c +++ b/FatPkg/FatPei/Mbr.c @@ -51,7 +51,7 @@ PartitionValidMbr ( EndingLBA =3D StartingLBA + UNPACK_UINT32 (Mbr->Partition[Index1].Si= zeInLBA) - 1; if (EndingLBA > LastLba) { // - // Compatability Errata: + // Compatibility Errata: // Some systems try to hide drive space with their INT 13h driver // This does not hide space from the OS driver. This means the MBR // that gets created from DOS is smaller than the MBR created from --=20 2.21.1