diff options
author | Nhi Pham <nhi@os.amperecomputing.com> | 2025-04-01 09:53:42 +0700 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2025-04-02 20:49:22 +0000 |
commit | cf5a955774b0a27ebfcc4a389f78d4ca278fc47f (patch) | |
tree | 5f19ab17b87b7f242610f727b92d26aae782d24c | |
parent | e0b218775411a0a7db1e6513160280e079b40646 (diff) | |
download | edk2-cf5a955774b0a27ebfcc4a389f78d4ca278fc47f.zip edk2-cf5a955774b0a27ebfcc4a389f78d4ca278fc47f.tar.gz edk2-cf5a955774b0a27ebfcc4a389f78d4ca278fc47f.tar.bz2 |
MdePkg/IndustryStandard: Fix typos in IoRemappingTable.h
This corrects the value of the type `Named Component` and `Root Complex`
in the structure comments, according to the DEN0049E_IO_Remapping_Table
specification [1], table 2.
[1] https://developer.arm.com/documentation/den0049/latest
Signed-off-by: Nhi Pham <nhi@os.amperecomputing.com>
-rw-r--r-- | MdePkg/Include/IndustryStandard/IoRemappingTable.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MdePkg/Include/IndustryStandard/IoRemappingTable.h b/MdePkg/Include/IndustryStandard/IoRemappingTable.h index 851ce00..ad9b2c4 100644 --- a/MdePkg/Include/IndustryStandard/IoRemappingTable.h +++ b/MdePkg/Include/IndustryStandard/IoRemappingTable.h @@ -145,7 +145,7 @@ typedef struct { } EFI_ACPI_6_0_IO_REMAPPING_ITS_NODE;
///
-/// Node type 1: root complex node
+/// Node type 2: root complex node
///
typedef struct {
EFI_ACPI_6_0_IO_REMAPPING_NODE Node;
@@ -164,7 +164,7 @@ typedef struct { } EFI_ACPI_6_0_IO_REMAPPING_RC_NODE;
///
-/// Node type 2: named component node
+/// Node type 1: named component node
///
typedef struct {
EFI_ACPI_6_0_IO_REMAPPING_NODE Node;
|