summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoey Gouly <joey.gouly@arm.com>2021-04-15 13:17:17 +0100
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2021-04-19 13:28:26 +0000
commit10bf6c40f6eb98a99c04346702cfb3ada8bd2dc5 (patch)
tree1974b7e1bafb443e033c0e8329ef489385130cf2
parent99e7e48cc7117c37fc1c08a741872d0875595796 (diff)
downloadedk2-10bf6c40f6eb98a99c04346702cfb3ada8bd2dc5.tar.gz
edk2-10bf6c40f6eb98a99c04346702cfb3ada8bd2dc5.tar.bz2
edk2-10bf6c40f6eb98a99c04346702cfb3ada8bd2dc5.zip
ShellPkg: Rename Address Size to Access size
This matches the ACPI spec 6.3, table 5.1: Generic Address Structure. Signed-off-by: Joey Gouly <joey.gouly@arm.com> Reviewed-by: Zhichao Gao <zhichao.gao@intel.com> Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>
-rw-r--r--ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiParser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiParser.c b/ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiParser.c
index 01ac9a9baf..74056e72c3 100644
--- a/ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiParser.c
+++ b/ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiParser.c
@@ -1,7 +1,7 @@
/** @file
ACPI parser
- Copyright (c) 2016 - 2020, Arm Limited. All rights reserved.
+ Copyright (c) 2016 - 2021, Arm Limited. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
@@ -628,7 +628,7 @@ STATIC CONST ACPI_PARSER GasParser[] = {
{L"Address Space ID", 1, 0, L"0x%x", NULL, NULL, NULL, NULL},
{L"Register Bit Width", 1, 1, L"0x%x", NULL, NULL, NULL, NULL},
{L"Register Bit Offset", 1, 2, L"0x%x", NULL, NULL, NULL, NULL},
- {L"Address Size", 1, 3, L"0x%x", NULL, NULL, NULL, NULL},
+ {L"Access Size", 1, 3, L"0x%x", NULL, NULL, NULL, NULL},
{L"Address", 8, 4, L"0x%lx", NULL, NULL, NULL, NULL}
};