+
+#define VENTOY_GET_COMPONENT_NAME(Protocol, DriverName) \
+{\
+ DriverName = NULL;\
+ Status = Protocol->GetDriverName(Protocol, "en", &DriverName);\
+ if (EFI_ERROR(Status) || NULL == DriverName) \
+ {\
+ DriverName = NULL;\
+ Status = Protocol->GetDriverName(Protocol, "eng", &DriverName);\
+ if (EFI_ERROR(Status) || NULL == DriverName) \
+ {\
+ continue;\
+ }\
+ }\
+}
+