summaryrefslogtreecommitdiff
path: root/MdeModulePkg/Library/CustomizedDisplayLib
diff options
context:
space:
mode:
authorEric Dong <eric.dong@intel.com>2013-12-17 08:33:06 +0000
committerydong10 <ydong10@6f19259b-4bc3-4df7-8a09-765794883524>2013-12-17 08:33:06 +0000
commit077c7aeec07361fc36f8090be46959adb7d38873 (patch)
tree72d8596f9841b7100f76d738dda04ee9e1dae7ac /MdeModulePkg/Library/CustomizedDisplayLib
parentc5fba0fea419f796c229f787a8717f9c15ad87c5 (diff)
downloadedk2-077c7aeec07361fc36f8090be46959adb7d38873.zip
edk2-077c7aeec07361fc36f8090be46959adb7d38873.tar.gz
edk2-077c7aeec07361fc36f8090be46959adb7d38873.tar.bz2
Update code to support guid op nest in the statement.
Signed-off-by: Eric Dong <eric.dong@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@14995 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Library/CustomizedDisplayLib')
-rw-r--r--MdeModulePkg/Library/CustomizedDisplayLib/CustomizedDisplayLibInternal.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/MdeModulePkg/Library/CustomizedDisplayLib/CustomizedDisplayLibInternal.c b/MdeModulePkg/Library/CustomizedDisplayLib/CustomizedDisplayLibInternal.c
index 82ab82b..ad4bc9a 100644
--- a/MdeModulePkg/Library/CustomizedDisplayLib/CustomizedDisplayLibInternal.c
+++ b/MdeModulePkg/Library/CustomizedDisplayLib/CustomizedDisplayLibInternal.c
@@ -322,7 +322,9 @@ ProcessExternedOpcode (
)
{
LIST_ENTRY *Link;
+ LIST_ENTRY *NestLink;
FORM_DISPLAY_ENGINE_STATEMENT *Statement;
+ FORM_DISPLAY_ENGINE_STATEMENT *NestStatement;
Link = GetFirstNode (&FormData->StatementListOSF);
while (!IsNull (&FormData->StatementListOSF, Link)) {
@@ -338,6 +340,15 @@ ProcessExternedOpcode (
Link = GetNextNode (&FormData->StatementListHead, Link);
ProcessUserOpcode(Statement->OpCode);
+
+ NestLink = GetFirstNode (&Statement->NestStatementList);
+ while (!IsNull (&Statement->NestStatementList, NestLink)) {
+ NestStatement = FORM_DISPLAY_ENGINE_STATEMENT_FROM_LINK (NestLink);
+ NestLink = GetNextNode (&Statement->NestStatementList, NestLink);
+
+ ProcessUserOpcode(NestStatement->OpCode);
+ }
+
}
}