summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSami Mujawar <sami.mujawar@arm.com>2026-04-30 15:04:42 +0100
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2026-07-03 12:24:39 +0000
commitec44a71ba711b326be4f1d0e370a0d67668cdfa8 (patch)
treeabe9dd326e59b470f48ddd50cdc5043f3974db55
parente54671e9ef14ffc440ca515f75543d227f72f3c8 (diff)
downloadedk2-ec44a71ba711b326be4f1d0e370a0d67668cdfa8.tar.gz
edk2-ec44a71ba711b326be4f1d0e370a0d67668cdfa8.zip
ShellPkg/Acpiview: Increase the max supported parsers
The RegisterParser() function is failing with error code EFI_OUT_OF_RESOURCES as we have run out of space for registering the ACPI table parsers in mTableParserList[]. Therefore, increase the MAX_ACPI_TABLE_PARSERS to 128. Signed-off-by: Sami Mujawar <sami.mujawar@arm.com>
-rw-r--r--ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiTableParser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiTableParser.h b/ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiTableParser.h
index fd114bf11c..b0646605cc 100644
--- a/ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiTableParser.h
+++ b/ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiTableParser.h
@@ -10,7 +10,7 @@
/**
The maximum number of ACPI table parsers.
*/
-#define MAX_ACPI_TABLE_PARSERS 32
+#define MAX_ACPI_TABLE_PARSERS 128
/** An invalid/NULL signature value.
*/