DynamicTablesPkg: Fix some spelling mistakes found by cspell
When cspell is installed (via `npm install cspell`), CI checks for spelling mistakes. There are currently a very large number of them: some are genuine mistakes while others are words or acryonyms that cspell doesn't know. Fix a few of the misspellings in DynamicTablesPkg. Signed-off-by: Rebecca Cran <rebecca@bsdio.com>
This commit is contained in:
parent
c26490ea29
commit
bbee1cc852
|
@ -330,7 +330,7 @@ AmlParseString (
|
||||||
StrSize = 0;
|
StrSize = 0;
|
||||||
// AML String is NULL terminated.
|
// AML String is NULL terminated.
|
||||||
do {
|
do {
|
||||||
// Reading the stream moves the stream forward aswell.
|
// Reading the stream moves the stream forward as well.
|
||||||
Status = AmlStreamReadByte (FStream, &Byte);
|
Status = AmlStreamReadByte (FStream, &Byte);
|
||||||
if (EFI_ERROR (Status)) {
|
if (EFI_ERROR (Status)) {
|
||||||
ASSERT (0);
|
ASSERT (0);
|
||||||
|
|
|
@ -573,7 +573,7 @@ AmlIsMethodDefinitionNode (
|
||||||
{
|
{
|
||||||
AML_DATA_NODE *ObjectType;
|
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)) {
|
if (AmlNodeCompareOpCode (Node, AML_METHOD_OP, 0)) {
|
||||||
return TRUE;
|
return TRUE;
|
||||||
} else if (AmlNodeCompareOpCode (Node, AML_EXTERNAL_OP, 0)) {
|
} else if (AmlNodeCompareOpCode (Node, AML_EXTERNAL_OP, 0)) {
|
||||||
|
|
Loading…
Reference in New Issue