mirror of https://github.com/acidanthera/audk.git
Fix a issue to support the callback related to framework IFR REF opcode. Its callback type is EFI_IFR_TYPE_UNDEFINED according to the latest UEFI spec.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10241 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
61a2420125
commit
eebe3bb831
|
@ -793,6 +793,7 @@ CreateIfrDataArray (
|
|||
break;
|
||||
|
||||
case EFI_IFR_TYPE_ACTION:
|
||||
case EFI_IFR_TYPE_UNDEFINED:
|
||||
Size = 0;
|
||||
break;
|
||||
|
||||
|
@ -852,6 +853,7 @@ CreateIfrDataArray (
|
|||
break;
|
||||
|
||||
case EFI_IFR_TYPE_ACTION:
|
||||
case EFI_IFR_TYPE_UNDEFINED:
|
||||
break;
|
||||
|
||||
default:
|
||||
|
|
Loading…
Reference in New Issue