From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-1.mimecast.com (us-smtp-1.mimecast.com [205.139.110.120]) by mx.groups.io with SMTP id smtpd.web12.2003.1578044502837674923 for ; Fri, 03 Jan 2020 01:41:43 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=YzkiQFtW; spf=pass (domain: redhat.com, ip: 205.139.110.120, mailfrom: philmd@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1578044501; 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=T3DG0qJByI7DIw6LCBa6R5w91As8H3RNEk9gcNpL4LM=; b=YzkiQFtWV2mgmg7psVf6OP5mnHQNMOiZiSWmk7bVoRQXs924/aWNkMQroXkNnUQI7R6alv EeEVqFc7phdTf/yLU1PO1+gAeJI90TBtSUiwoaIe5o5KmKl517c7DxX/mouKUDoTUHsyeB 7iDtYwLdqAIWGV5n1K2oIB80RzGR9JQ= 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-276-9bt99ewqMHKix-_hDXHNPw-1; Fri, 03 Jan 2020 04:41:40 -0500 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 05B7E18557C0; Fri, 3 Jan 2020 09:41:39 +0000 (UTC) Received: from x1w.redhat.com (ovpn-116-190.ams2.redhat.com [10.36.116.190]) by smtp.corp.redhat.com (Postfix) with ESMTPS id CD74760BF7; Fri, 3 Jan 2020 09:41:37 +0000 (UTC) From: =?UTF-8?B?UGhpbGlwcGUgTWF0aGlldS1EYXVkw6k=?= To: devel@edk2.groups.io Cc: Antoine Coeur , Ray Ni , Philippe Mathieu-Daude Subject: [PATCH v2 61/78] PcAtChipsetPkg: Fix few typos Date: Fri, 3 Jan 2020 10:07:55 +0100 Message-Id: <20200103090812.10592-62-philmd@redhat.com> In-Reply-To: <20200103090812.10592-1-philmd@redhat.com> References: <20200103090812.10592-1-philmd@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-MC-Unique: 9bt99ewqMHKix-_hDXHNPw-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable From: Antoine Coeur Correctly write 'serial', remove duplicated 'the'. Cc: Ray Ni Signed-off-by: Antoine Coeur Reviewed-by: Philippe Mathieu-Daude Signed-off-by: Philippe Mathieu-Daude --- PcAtChipsetPkg/Library/AcpiTimerLib/AcpiTimerLib.c | 2 +- PcAtChipsetPkg/Library/SerialIoLib/SerialPortLib.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/PcAtChipsetPkg/Library/AcpiTimerLib/AcpiTimerLib.c b/PcAtChips= etPkg/Library/AcpiTimerLib/AcpiTimerLib.c index 7dc11014a588..0a49093dbf26 100644 --- a/PcAtChipsetPkg/Library/AcpiTimerLib/AcpiTimerLib.c +++ b/PcAtChipsetPkg/Library/AcpiTimerLib/AcpiTimerLib.c @@ -59,7 +59,7 @@ AcpiTimerLibConstructor ( =20 // // If the register offset to the BAR for the ACPI I/O Port Base Address = is 0x0000, then - // no PCI register programming is required to enable access to the the A= CPI registers + // no PCI register programming is required to enable access to the ACPI = registers // specified by PcdAcpiIoPortBaseAddress // if (PcdGet16 (PcdAcpiIoPciBarRegisterOffset) =3D=3D 0x0000) { diff --git a/PcAtChipsetPkg/Library/SerialIoLib/SerialPortLib.c b/PcAtChips= etPkg/Library/SerialIoLib/SerialPortLib.c index 25c4cefc1381..aa5657a7fd6b 100644 --- a/PcAtChipsetPkg/Library/SerialIoLib/SerialPortLib.c +++ b/PcAtChipsetPkg/Library/SerialIoLib/SerialPortLib.c @@ -58,7 +58,7 @@ UINT8 gBreakSet =3D 0; If the serial device could not be initialized, then return RETURN_DEVICE= _ERROR. =20 @retval RETURN_SUCCESS The serial device was initialized. - @retval RETURN_DEVICE_ERROR The serail device could not be initialized= . + @retval RETURN_DEVICE_ERROR The serial device could not be initialized= . =20 **/ RETURN_STATUS @@ -139,7 +139,7 @@ SerialPortWrite ( =20 while ((NumberOfBytes--) !=3D 0) { // - // Wait for the serail port to be ready. + // Wait for the serial port to be ready. // do { Data =3D IoRead8 ((UINT16) gUartBase + LSR_OFFSET); @@ -180,7 +180,7 @@ SerialPortRead ( =20 while ((NumberOfBytes--) !=3D 0) { // - // Wait for the serail port to be ready. + // Wait for the serial port to be ready. // do { Data =3D IoRead8 ((UINT16) gUartBase + LSR_OFFSET); --=20 2.21.0