From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-1.mimecast.com (us-smtp-1.mimecast.com [207.211.31.120]) by mx.groups.io with SMTP id smtpd.web11.6828.1581039673211097039 for ; Thu, 06 Feb 2020 17:41:13 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=NCEjD9+O; spf=pass (domain: redhat.com, ip: 207.211.31.120, mailfrom: philmd@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1581039672; 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=nPTcjZornj7vHZqPYG6mKnzBuL7xkH1Om+CnJVQxR8M=; b=NCEjD9+O4Iq1JM4WvVa5ybbiycULiOh+prRh1yNo+BuVWHJEMf9LOyIakELhIbqa6txs/Q s48iW1bEHEfYtK0bFSZr8aN5dMgYAcqxWN3LqOKjuavAYEJ56eVKVQS3ZorUHQf+dhQI1J y3EpzEGC/Tpyhf8LxSsnUizdPauvhwk= 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-351-w8K3weSGO5mCbJdYWPTb3g-1; Thu, 06 Feb 2020 20:41:09 -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 E20DF104FB68; Fri, 7 Feb 2020 01:41:07 +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 5A2535C241; Fri, 7 Feb 2020 01:41:04 +0000 (UTC) From: =?UTF-8?B?UGhpbGlwcGUgTWF0aGlldS1EYXVkw6k=?= To: devel@edk2.groups.io Cc: Laszlo Ersek , Eric Dong Subject: [PATCH v3 61/78] PcAtChipsetPkg: Fix few typos Date: Fri, 7 Feb 2020 02:08:14 +0100 Message-Id: <20200207010831.9046-62-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: w8K3weSGO5mCbJdYWPTb3g-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 Correctly write 'serial', remove duplicated 'the'. Cc: Ray Ni Signed-off-by: Antoine Coeur Reviewed-by: Philippe Mathieu-Daude Acked-by: Liming Gao 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.1