Changeset 99404 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/OvmfPkg/XenPvBlkDxe/ComponentName.c
- Timestamp:
- Apr 14, 2023 3:17:44 PM (23 months ago)
- svn:sync-xref-src-repo-rev:
- 156854
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/FirmwareNew
-
Property svn:mergeinfo
changed from (toggle deleted branches)
to (toggle deleted branches)/vendor/edk2/current 103735-103757,103769-103776,129194-145445 /vendor/edk2/current 103735-103757,103769-103776,129194-156846
-
Property svn:mergeinfo
changed from (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/FirmwareNew/OvmfPkg/XenPvBlkDxe/ComponentName.c
r80721 r99404 15 15 GLOBAL_REMOVE_IF_UNREFERENCED 16 16 EFI_COMPONENT_NAME_PROTOCOL gXenPvBlkDxeComponentName = { 17 (EFI_COMPONENT_NAME_GET_DRIVER_NAME) 17 (EFI_COMPONENT_NAME_GET_DRIVER_NAME)XenPvBlkDxeComponentNameGetDriverName, 18 18 (EFI_COMPONENT_NAME_GET_CONTROLLER_NAME)XenPvBlkDxeComponentNameGetControllerName, 19 19 "eng" … … 34 34 /// 35 35 GLOBAL_REMOVE_IF_UNREFERENCED 36 EFI_UNICODE_STRING_TABLE mXenPvBlkDxeDriverNameTable[] = {36 EFI_UNICODE_STRING_TABLE mXenPvBlkDxeDriverNameTable[] = { 37 37 { "eng;en", (CHAR16 *)L"Xen PV Block Driver" }, 38 { NULL, NULL}38 { NULL, NULL } 39 39 }; 40 40 … … 43 43 /// 44 44 GLOBAL_REMOVE_IF_UNREFERENCED 45 EFI_UNICODE_STRING_TABLE mXenPvBlkDxeControllerNameTable[] = {45 EFI_UNICODE_STRING_TABLE mXenPvBlkDxeControllerNameTable[] = { 46 46 { "eng;en", (CHAR16 *)L"Xen PV Block Device" }, 47 { NULL, NULL}47 { NULL, NULL } 48 48 }; 49 49 … … 53 53 @param This A pointer to the EFI_COMPONENT_NAME_PROTOCOL instance. 54 54 @param Language A pointer to a three-character ISO 639-2 language identifier. 55 This is the language of the driver name that th at the caller55 This is the language of the driver name that the caller 56 56 is requesting, and it must match one of the languages specified 57 57 in SupportedLanguages. The number of languages supported by a
Note:
See TracChangeset
for help on using the changeset viewer.