summaryrefslogtreecommitdiffstats
path: root/BaseTools
diff options
context:
space:
mode:
authorDandan Bi <dandan.bi@intel.com>2016-08-01 19:18:30 +0800
committerYonghong Zhu <yonghong.zhu@intel.com>2016-08-08 11:04:46 +0800
commitbec3a18108cf5839f3fb1f451c55e1b2afcbc747 (patch)
tree2c08ea7adc068bf411a714e13494d1af9b04a9b9 /BaseTools
parent5c8075fce336f25a068cc56b63260aae30d4cf2e (diff)
downloadedk2-bec3a18108cf5839f3fb1f451c55e1b2afcbc747.tar.gz
edk2-bec3a18108cf5839f3fb1f451c55e1b2afcbc747.tar.bz2
edk2-bec3a18108cf5839f3fb1f451c55e1b2afcbc747.zip
BaseTool/VfrCompile: Add missing question opcode
The function CheckQuestionOpCode is to check whether the opcode is question opcode, but it misses two question opcodes: 'EFI_IFR_REF_OP' and 'EFI_IFR_RESET_BUTTON'. Now add them. Cc: Liming Gao <liming.gao@intel.com> Cc: Eric Dong <eric.dong@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Dandan Bi <dandan.bi@intel.com> Reviewed-by: Eric Dong <eric.dong@intel.com> Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
Diffstat (limited to 'BaseTools')
-rw-r--r--BaseTools/Source/C/VfrCompile/VfrFormPkg.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/BaseTools/Source/C/VfrCompile/VfrFormPkg.cpp b/BaseTools/Source/C/VfrCompile/VfrFormPkg.cpp
index 1612217272..892b7b8fc7 100644
--- a/BaseTools/Source/C/VfrCompile/VfrFormPkg.cpp
+++ b/BaseTools/Source/C/VfrCompile/VfrFormPkg.cpp
@@ -2,7 +2,7 @@
The definition of CFormPkg's member function
-Copyright (c) 2004 - 2013, Intel Corporation. All rights reserved.<BR>
+Copyright (c) 2004 - 2016, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -1181,6 +1181,8 @@ CIfrRecordInfoDB::CheckQuestionOpCode (
case EFI_IFR_DATE_OP:
case EFI_IFR_TIME_OP:
case EFI_IFR_ORDERED_LIST_OP:
+ case EFI_IFR_REF_OP:
+ case EFI_IFR_RESET_BUTTON_OP:
return TRUE;
default:
return FALSE;