From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by spool.mail.gandi.net (Postfix) with ESMTPS id 3A592941DE2 for ; Tue, 9 Jan 2024 16:30:53 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=IWoz0uEYg/qms68KXMlocXs6lnexxwud2Dh5bPnXnjM=; c=relaxed/simple; d=groups.io; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References:MIME-Version:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Transfer-Encoding; s=20140610; t=1704817851; v=1; b=sNxZXCbmT6abWCxTrwmiC2o55+VjVDzpYnaZ8snTbmmKqH3VHJjjvMOgVASlvpEjtl9Cbdu0 rVjTScM59DaoeZKBCeOa5ImWj1EOig+E2NkUI1qVxxEGQvOn6Ez6XtigjX1FNPJOr/GrOWB5IPW ptE+0DLXAJ5MqgXeTcJvCZxc= X-Received: by 127.0.0.2 with SMTP id kailYY7687511xHJzxXbBOt4; Tue, 09 Jan 2024 08:30:51 -0800 X-Received: from mail-pl1-f173.google.com (mail-pl1-f173.google.com [209.85.214.173]) by mx.groups.io with SMTP id smtpd.web11.21087.1704817851406053034 for ; Tue, 09 Jan 2024 08:30:51 -0800 X-Received: by mail-pl1-f173.google.com with SMTP id d9443c01a7336-1d542701796so13321795ad.1 for ; Tue, 09 Jan 2024 08:30:51 -0800 (PST) X-Gm-Message-State: xC3xODkywjNmpnDYSerjWcDBx7686176AA= X-Google-Smtp-Source: AGHT+IFaQqwUKweNTnLJnkQhVy5PBLM1ha/p+bikf9MDEGE1n0viNCq4FH+Hw56km+B4g2lZB3sSag== X-Received: by 2002:a17:902:7c88:b0:1cf:6453:b268 with SMTP id y8-20020a1709027c8800b001cf6453b268mr2596401pll.53.1704817850468; Tue, 09 Jan 2024 08:30:50 -0800 (PST) X-Received: from localhost.localdomain ([106.51.188.200]) by smtp.gmail.com with ESMTPSA id c12-20020a170902b68c00b001d457090851sm1983596pls.289.2024.01.09.08.30.48 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 09 Jan 2024 08:30:50 -0800 (PST) From: "Sunil V L" To: devel@edk2.groups.io Cc: Sunil V L , Ard Biesheuvel , Leif Lindholm , Pierre Gondois , Sami Mujawar Subject: [edk2-devel] [RFC PATCH v1 19/20] DynamicTablesPkg/AmlLib: Fix typo Date: Tue, 9 Jan 2024 21:59:43 +0530 Message-Id: <20240109162944.528006-20-sunilvl@ventanamicro.com> In-Reply-To: <20240109162944.528006-1-sunilvl@ventanamicro.com> References: <20240109162944.528006-1-sunilvl@ventanamicro.com> MIME-Version: 1.0 Precedence: Bulk List-Subscribe: List-Help: 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,sunilvl@ventanamicro.com List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: Content-Transfer-Encoding: 8bit X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20140610 header.b=sNxZXCbm; dmarc=none; spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce@groups.io For some reason, spell checker in CI finds this typo though it existed earlier. Cc: Ard Biesheuvel Cc: Leif Lindholm Cc: Pierre Gondois Cc: Sami Mujawar Signed-off-by: Sunil V L --- DynamicTablesPkg/Library/Common/AmlLib/Parser/AmlParser.c | 2 +- DynamicTablesPkg/Library/Common/AmlLib/Tree/AmlNode.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DynamicTablesPkg/Library/Common/AmlLib/Parser/AmlParser.c b/DynamicTablesPkg/Library/Common/AmlLib/Parser/AmlParser.c index d3a51a94c70c..3762441c7a71 100644 --- a/DynamicTablesPkg/Library/Common/AmlLib/Parser/AmlParser.c +++ b/DynamicTablesPkg/Library/Common/AmlLib/Parser/AmlParser.c @@ -330,7 +330,7 @@ AmlParseString ( StrSize = 0; // AML String is NULL terminated. do { - // Reading the stream moves the stream forward aswell. + // Reading the stream moves the stream forward as well. Status = AmlStreamReadByte (FStream, &Byte); if (EFI_ERROR (Status)) { ASSERT (0); diff --git a/DynamicTablesPkg/Library/Common/AmlLib/Tree/AmlNode.c b/DynamicTablesPkg/Library/Common/AmlLib/Tree/AmlNode.c index 1404a2182b65..0a744f1ff3fa 100644 --- a/DynamicTablesPkg/Library/Common/AmlLib/Tree/AmlNode.c +++ b/DynamicTablesPkg/Library/Common/AmlLib/Tree/AmlNode.c @@ -573,7 +573,7 @@ AmlIsMethodDefinitionNode ( { AML_DATA_NODE *ObjectType; - // Node is checked to be an object node aswell. + // Node is checked to be an object node as well. if (AmlNodeCompareOpCode (Node, AML_METHOD_OP, 0)) { return TRUE; } else if (AmlNodeCompareOpCode (Node, AML_EXTERNAL_OP, 0)) { -- 2.34.1 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#113481): https://edk2.groups.io/g/devel/message/113481 Mute This Topic: https://groups.io/mt/103622747/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-