BaseTools: use built in OrderedDict instead of custom version.
We dont use any feature added by custom dictionary class. Cc: Liming Gao <liming.gao@intel.com> Cc: Yonghong Zhu <yonghong.zhu@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Jaben Carsey <jaben.carsey@intel.com> Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
This commit is contained in:
committed by
Yonghong Zhu
parent
0d8ff45567
commit
6e6d767edf
@ -11,7 +11,7 @@
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
from Common.Misc import sdict
|
||||
from collections import OrderedDict
|
||||
from Common.LongFilePathSupport import OpenLongFilePath as open
|
||||
|
||||
gEFI_SOURCE = ''
|
||||
@ -79,12 +79,12 @@ gPpiList = {}
|
||||
gProtocolList = {}
|
||||
|
||||
# Dict for consumed PPI function calling
|
||||
gConsumedPpiLibrary = sdict()
|
||||
gConsumedPpiLibrary = OrderedDict()
|
||||
gConsumedPpiLibrary['EfiCommonLocateInterface'] = 0
|
||||
gConsumedPpiLibrary['PeiServicesLocatePpi'] = 0
|
||||
|
||||
# Dict for produced PROTOCOL function calling
|
||||
gProducedProtocolLibrary = sdict()
|
||||
gProducedProtocolLibrary = OrderedDict()
|
||||
gProducedProtocolLibrary['RegisterEsalClass'] = 0
|
||||
gProducedProtocolLibrary['CoreInstallProtocolInterface'] = 1
|
||||
gProducedProtocolLibrary['CoreInstallMultipleProtocolInterfaces'] = -1
|
||||
@ -95,14 +95,14 @@ gProducedProtocolLibrary['LibInstallProtocolInterfaces'] = 1
|
||||
gProducedProtocolLibrary['LibReinstallProtocolInterfaces'] = 1
|
||||
|
||||
# Dict for consumed PROTOCOL function calling
|
||||
gConsumedProtocolLibrary = sdict()
|
||||
gConsumedProtocolLibrary = OrderedDict()
|
||||
gConsumedProtocolLibrary['EfiHandleProtocol'] = 0
|
||||
gConsumedProtocolLibrary['EfiLocateProtocolHandleBuffers'] = 0
|
||||
gConsumedProtocolLibrary['EfiLocateProtocolInterface'] = 0
|
||||
gConsumedProtocolLibrary['EfiHandleProtocol'] = 1
|
||||
|
||||
# Dict for callback PROTOCOL function callling
|
||||
gCallbackProtocolLibrary = sdict()
|
||||
gCallbackProtocolLibrary = OrderedDict()
|
||||
gCallbackProtocolLibrary['EfiRegisterProtocolCallback'] = 2
|
||||
|
||||
# Dict for ARCH PROTOCOL
|
||||
|
Reference in New Issue
Block a user