From nobody Mon Feb 9 04:46:35 2026 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of groups.io designates 66.175.222.12 as permitted sender) client-ip=66.175.222.12; envelope-from=bounce+27952+53956+1787277+3901457@groups.io; helo=web01.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+53956+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=redhat.com Received: from web01.groups.io (web01.groups.io [66.175.222.12]) by mx.zohomail.com with SMTPS id 15810396601351011.0362905236213; Thu, 6 Feb 2020 17:41:00 -0800 (PST) Return-Path: X-Received: by 127.0.0.2 with SMTP id gYwVYY1788612xORWrycNaYi; Thu, 06 Feb 2020 17:40:59 -0800 X-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.6818.1581039659152678149 for ; Thu, 06 Feb 2020 17:40:59 -0800 X-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-42-m9OWYNx-OUCJe0FUEwvSeA-1; Thu, 06 Feb 2020 20:40:56 -0500 X-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 2BE0A102C861; Fri, 7 Feb 2020 01:40:55 +0000 (UTC) X-Received: from x1w.redhat.com (ovpn-204-120.brq.redhat.com [10.40.204.120]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 164FE5C241; Fri, 7 Feb 2020 01:40:53 +0000 (UTC) From: =?UTF-8?B?UGhpbGlwcGUgTWF0aGlldS1EYXVkw6k=?= To: devel@edk2.groups.io Cc: Laszlo Ersek , Eric Dong Subject: [edk2-devel] [PATCH v3 54/78] OvmfPkg/Acpi: Fix few typos Date: Fri, 7 Feb 2020 02:08:07 +0100 Message-Id: <20200207010831.9046-55-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: m9OWYNx-OUCJe0FUEwvSeA-1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Precedence: Bulk List-Unsubscribe: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,philmd@redhat.com X-Gm-Message-State: 35ahOs9jovc1ra3KICXdpjeqx1787277AA= Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1581039659; bh=/qA0uoEyU2nvILqOpa1lwBl/9UPkNb86fBrJFVW+cqk=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=vTTWgt2/XtnMexzsgePHI1dMMuYRl5AucJrckYuiELI7CigGN+0E+qreweFdkyC8zIE OGWRv6EcZD1RKtfxa+qmFkdumhVsKa92D5GAYHjLIw1rhPk8x4hPPUEqqkqApJGkgVc0C PwHde/QKh6CR/jJu3UUP90ErI1TsAFQjALs= X-ZohoMail-DKIM: pass (identity @groups.io) From: Antoine Coeur Fix few typos in comments and documentation. Cc: Jordan Justen Cc: Laszlo Ersek Cc: Ard Biesheuvel Signed-off-by: Antoine Coeur Reviewed-by: Philippe Mathieu-Daude Reviewed-by: Laszlo Ersek Signed-off-by: Philippe Mathieu-Daude --- OvmfPkg/Csm/Include/Protocol/IsaAcpi.h | 2 +- OvmfPkg/AcpiPlatformDxe/BootScript.c | 2 +- OvmfPkg/AcpiTables/Facp.aslc | 8 ++++---- OvmfPkg/AcpiTables/Facs.aslc | 2 +- OvmfPkg/AcpiTables/Madt.aslc | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/OvmfPkg/Csm/Include/Protocol/IsaAcpi.h b/OvmfPkg/Csm/Include/P= rotocol/IsaAcpi.h index 12aeb1227c54..0ff57aa118ca 100644 --- a/OvmfPkg/Csm/Include/Protocol/IsaAcpi.h +++ b/OvmfPkg/Csm/Include/Protocol/IsaAcpi.h @@ -131,7 +131,7 @@ EFI_STATUS =20 This services sets the power state of the ISA controller specified by De= vice to the power state specified by OnOff. TRUE denotes on, FALSE denotes off. - If the power state is sucessfully set on the ISA Controller, then + If the power state is successfully set on the ISA Controller, then EFI_SUCCESS is returned. =20 @param[in] This The pointer to the EFI_ISA_ACPI_PROTOCOL instance. diff --git a/OvmfPkg/AcpiPlatformDxe/BootScript.c b/OvmfPkg/AcpiPlatformDxe= /BootScript.c index 7137994471bd..7b1b9586da41 100644 --- a/OvmfPkg/AcpiPlatformDxe/BootScript.c +++ b/OvmfPkg/AcpiPlatformDxe/BootScript.c @@ -240,7 +240,7 @@ AppendFwCfgBootScript ( Script opcodes. If the function returns successful= ly, the caller must set the S3Context pointer -- origi= nally returned by AllocateS3Context() -- immediately to = NULL, - because the ownership of S3Context has been transf= ered. + because the ownership of S3Context has been transf= erred. =20 @retval EFI_SUCCESS The translation of S3Context to ACPI S3 Boot Script opcodes has been successfully executed or queued. (T= his diff --git a/OvmfPkg/AcpiTables/Facp.aslc b/OvmfPkg/AcpiTables/Facp.aslc index 8829c1808a70..657a8c645821 100644 --- a/OvmfPkg/AcpiTables/Facp.aslc +++ b/OvmfPkg/AcpiTables/Facp.aslc @@ -21,7 +21,7 @@ EFI_ACPI_2_0_FIXED_ACPI_DESCRIPTION_TABLE FACP =3D { EFI_ACPI_CREATOR_ID, // ASL compiler vendor ID EFI_ACPI_CREATOR_REVISION // ASL compiler revision number }, - 0, // Physical addesss of FACS + 0, // Physical address of FACS 0, // Physical address of DSDT RESERVED, // System Interrupt Model in ACPI 1.0, eliminated in 2= .0 EFI_ACPI_2_0_PM_PROFILE_UNSPECIFIED, // Preferred PM profile @@ -62,8 +62,8 @@ EFI_ACPI_2_0_FIXED_ACPI_DESCRIPTION_TABLE FACP =3D { GAS2_IO(RESET_REG, 1), // Extended address of the Reset Register RESET_VALUE, // Value for the Reset Register to reset the syst= em { RESERVED }, // reserved[3] - 0, // 64-bit physical addesss of FACS, set at installation - 0, // 64-bit physical addesss of DSDT, set at installation + 0, // 64-bit physical address of FACS, set at installation + 0, // 64-bit physical address of DSDT, set at installation =20 GAS2_IO(PM1a_EVT_BLK, PM1_EVT_LEN), // Ext. addr. of PM 1a Event Reg Blk { 0 }, // PM 1b Event Reg Blk unsupported @@ -83,7 +83,7 @@ ReferenceAcpiTable ( { // // Reference the table being generated to prevent the optimizer from rem= oving the - // data structure from the exeutable + // data structure from the executable // return (VOID*)&FACP; } diff --git a/OvmfPkg/AcpiTables/Facs.aslc b/OvmfPkg/AcpiTables/Facs.aslc index 56f86c1ca4fd..d4e6ac4b6bad 100644 --- a/OvmfPkg/AcpiTables/Facs.aslc +++ b/OvmfPkg/AcpiTables/Facs.aslc @@ -71,7 +71,7 @@ ReferenceAcpiTable ( { // // Reference the table being generated to prevent the optimizer from rem= oving the - // data structure from the exeutable + // data structure from the executable // return (VOID*)&FACS; } diff --git a/OvmfPkg/AcpiTables/Madt.aslc b/OvmfPkg/AcpiTables/Madt.aslc index 44ffd3726500..02fc3649a0d0 100644 --- a/OvmfPkg/AcpiTables/Madt.aslc +++ b/OvmfPkg/AcpiTables/Madt.aslc @@ -147,7 +147,7 @@ ReferenceAcpiTable ( { // // Reference the table being generated to prevent the optimizer from rem= oving the - // data structure from the exeutable + // data structure from the executable // return (VOID*)&Madt; } --=20 2.21.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#53956): https://edk2.groups.io/g/devel/message/53956 Mute This Topic: https://groups.io/mt/71040660/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-