PrmPkg: Update code to be more C11 compliant by using __func__
__FUNCTION__ is a pre-standard extension that gcc and Visual C++ among others support, while __func__ was standardized in C99. Since it's more standard, replace __FUNCTION__ with __func__ throughout PrmPkg. Signed-off-by: Rebecca Cran <rebecca@bsdio.com> Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Ard Biesheuvel <ardb@kernel.org>
This commit is contained in:
committed by
mergify[bot]
parent
1295e37d4b
commit
9e7b042ecb
@@ -40,7 +40,7 @@ FindContextBufferInModuleBuffers (
|
||||
{
|
||||
UINTN Index;
|
||||
|
||||
DEBUG ((DEBUG_INFO, " %a %a - Entry.\n", _DBGMSGID_, __FUNCTION__));
|
||||
DEBUG ((DEBUG_INFO, " %a %a - Entry.\n", _DBGMSGID_, __func__));
|
||||
|
||||
if ((HandlerGuid == NULL) || (ModuleContextBuffers == NULL) || (ContextBuffer == NULL)) {
|
||||
return EFI_INVALID_PARAMETER;
|
||||
@@ -89,7 +89,7 @@ GetModuleContextBuffers (
|
||||
PRM_CONFIG_PROTOCOL *PrmConfigProtocol;
|
||||
CONST PRM_CONTEXT_BUFFER *PrmContextBuffer;
|
||||
|
||||
DEBUG ((DEBUG_INFO, " %a %a - Entry.\n", _DBGMSGID_, __FUNCTION__));
|
||||
DEBUG ((DEBUG_INFO, " %a %a - Entry.\n", _DBGMSGID_, __func__));
|
||||
|
||||
if ((Guid == NULL) || (PrmModuleContextBuffers == NULL)) {
|
||||
return EFI_INVALID_PARAMETER;
|
||||
@@ -122,7 +122,7 @@ GetModuleContextBuffers (
|
||||
DEBUG_INFO,
|
||||
" %a %a: Found a PRM configuration protocol for PRM module %g.\n",
|
||||
_DBGMSGID_,
|
||||
__FUNCTION__,
|
||||
__func__,
|
||||
Guid
|
||||
));
|
||||
|
||||
@@ -143,7 +143,7 @@ GetModuleContextBuffers (
|
||||
DEBUG_INFO,
|
||||
" %a %a: Could not locate a PRM configuration protocol for PRM handler %g.\n",
|
||||
_DBGMSGID_,
|
||||
__FUNCTION__,
|
||||
__func__,
|
||||
Guid
|
||||
));
|
||||
|
||||
@@ -176,7 +176,7 @@ GetContextBuffer (
|
||||
EFI_STATUS Status;
|
||||
CONST PRM_MODULE_CONTEXT_BUFFERS *ContextBuffers;
|
||||
|
||||
DEBUG ((DEBUG_INFO, " %a %a - Entry.\n", _DBGMSGID_, __FUNCTION__));
|
||||
DEBUG ((DEBUG_INFO, " %a %a - Entry.\n", _DBGMSGID_, __func__));
|
||||
|
||||
if ((PrmHandlerGuid == NULL) || (PrmContextBuffer == NULL)) {
|
||||
return EFI_INVALID_PARAMETER;
|
||||
|
@@ -384,7 +384,7 @@ VerifyGetModuleContextBuffers (
|
||||
UT_ASSERT_TRUE (CompareGuid (TestContext->ExpectedModuleGuid, &ContextBuffers->ModuleGuid));
|
||||
UT_LOG_INFO (
|
||||
"%a: Searching by %a GUID ({%g}) returned ContextBuffers at 0x%x\n",
|
||||
__FUNCTION__,
|
||||
__func__,
|
||||
((TestContext->GuidSearchType == ByModuleGuid) ? "module" : "handler"),
|
||||
TestContext->Guid,
|
||||
(UINTN)ContextBuffers
|
||||
|
@@ -48,7 +48,7 @@ GetNextPrmModuleEntry (
|
||||
PRM_MODULE_IMAGE_CONTEXT_LIST_ENTRY *CurrentListEntry;
|
||||
PRM_MODULE_IMAGE_CONTEXT_LIST_ENTRY *ForwardListEntry;
|
||||
|
||||
DEBUG ((DEBUG_INFO, "%a %a - Entry.\n", _DBGMSGID_, __FUNCTION__));
|
||||
DEBUG ((DEBUG_INFO, "%a %a - Entry.\n", _DBGMSGID_, __func__));
|
||||
|
||||
if (ModuleImageContext == NULL) {
|
||||
return EFI_INVALID_PARAMETER;
|
||||
@@ -94,7 +94,7 @@ CreateNewPrmModuleImageContextListEntry (
|
||||
{
|
||||
PRM_MODULE_IMAGE_CONTEXT_LIST_ENTRY *PrmModuleImageContextListEntry;
|
||||
|
||||
DEBUG ((DEBUG_INFO, "%a %a - Entry.\n", _DBGMSGID_, __FUNCTION__));
|
||||
DEBUG ((DEBUG_INFO, "%a %a - Entry.\n", _DBGMSGID_, __func__));
|
||||
|
||||
PrmModuleImageContextListEntry = AllocateZeroPool (sizeof (*PrmModuleImageContextListEntry));
|
||||
if (PrmModuleImageContextListEntry == NULL) {
|
||||
@@ -105,7 +105,7 @@ CreateNewPrmModuleImageContextListEntry (
|
||||
DEBUG_INFO,
|
||||
" %a %a: Allocated PrmModuleImageContextListEntry at 0x%x of size 0x%x bytes.\n",
|
||||
_DBGMSGID_,
|
||||
__FUNCTION__,
|
||||
__func__,
|
||||
(UINTN)PrmModuleImageContextListEntry,
|
||||
sizeof (*PrmModuleImageContextListEntry)
|
||||
));
|
||||
@@ -186,7 +186,7 @@ DiscoverPrmModules (
|
||||
EFI_MMRAM_DESCRIPTOR *MmramRanges;
|
||||
UINTN MmramRangeCount;
|
||||
|
||||
DEBUG ((DEBUG_INFO, "%a %a - Entry.\n", _DBGMSGID_, __FUNCTION__));
|
||||
DEBUG ((DEBUG_INFO, "%a %a - Entry.\n", _DBGMSGID_, __func__));
|
||||
|
||||
PrmHandlerCount = 0;
|
||||
PrmModuleCount = 0;
|
||||
@@ -203,7 +203,7 @@ DiscoverPrmModules (
|
||||
&HandleBuffer
|
||||
);
|
||||
if (EFI_ERROR (Status) && (HandleCount == 0)) {
|
||||
DEBUG ((DEBUG_ERROR, "%a %a: No LoadedImageProtocol instances found!\n", _DBGMSGID_, __FUNCTION__));
|
||||
DEBUG ((DEBUG_ERROR, "%a %a: No LoadedImageProtocol instances found!\n", _DBGMSGID_, __func__));
|
||||
return EFI_NOT_FOUND;
|
||||
}
|
||||
|
||||
@@ -255,7 +255,7 @@ DiscoverPrmModules (
|
||||
DEBUG_WARN,
|
||||
"%a %a: ImageHandle 0x%016lx is not a valid PE/COFF image. It cannot be considered a PRM module.\n",
|
||||
_DBGMSGID_,
|
||||
__FUNCTION__,
|
||||
__func__,
|
||||
(EFI_PHYSICAL_ADDRESS)(UINTN)LoadedImageProtocol->ImageBase
|
||||
));
|
||||
continue;
|
||||
@@ -304,7 +304,7 @@ DiscoverPrmModules (
|
||||
InsertTailList (&mPrmModuleList, &PrmModuleImageContextListEntry->Link);
|
||||
PrmHandlerCount += TempPrmModuleImageContext.ExportDescriptor->Header.NumberPrmHandlers;
|
||||
PrmModuleCount++;
|
||||
DEBUG ((DEBUG_INFO, "%a %a: New PRM Module inserted into list to be processed.\n", _DBGMSGID_, __FUNCTION__));
|
||||
DEBUG ((DEBUG_INFO, "%a %a: New PRM Module inserted into list to be processed.\n", _DBGMSGID_, __func__));
|
||||
}
|
||||
|
||||
if (HandlerCount != NULL) {
|
||||
|
@@ -51,7 +51,7 @@ GetPrmModuleExportDescriptorTable (
|
||||
UINT32 *ExportAddressTable;
|
||||
PRM_MODULE_EXPORT_DESCRIPTOR_STRUCT *TempExportDescriptor;
|
||||
|
||||
DEBUG ((DEBUG_INFO, "%a %a - Entry.\n", _DBGMSGID_, __FUNCTION__));
|
||||
DEBUG ((DEBUG_INFO, "%a %a - Entry.\n", _DBGMSGID_, __func__));
|
||||
|
||||
if ((ImageExportDirectory == NULL) ||
|
||||
(PeCoffLoaderImageContext == NULL) ||
|
||||
@@ -67,7 +67,7 @@ GetPrmModuleExportDescriptorTable (
|
||||
DEBUG_INFO,
|
||||
" %a %a: %d exported names found in this image.\n",
|
||||
_DBGMSGID_,
|
||||
__FUNCTION__,
|
||||
__func__,
|
||||
ImageExportDirectory->NumberOfNames
|
||||
));
|
||||
|
||||
@@ -85,7 +85,7 @@ GetPrmModuleExportDescriptorTable (
|
||||
DEBUG_INFO,
|
||||
" %a %a: Export Name[0x%x] - %a.\n",
|
||||
_DBGMSGID_,
|
||||
__FUNCTION__,
|
||||
__func__,
|
||||
Index,
|
||||
CurrentExportName
|
||||
));
|
||||
@@ -101,29 +101,29 @@ GetPrmModuleExportDescriptorTable (
|
||||
DEBUG_INFO,
|
||||
" %a %a: PRM Module Export Descriptor found. Ordinal = %d.\n",
|
||||
_DBGMSGID_,
|
||||
__FUNCTION__,
|
||||
__func__,
|
||||
PrmModuleExportDescriptorOrdinal
|
||||
));
|
||||
if (PrmModuleExportDescriptorOrdinal >= ImageExportDirectory->NumberOfFunctions) {
|
||||
DEBUG ((DEBUG_ERROR, "%a %a: The PRM Module Export Descriptor ordinal value is invalid.\n", _DBGMSGID_, __FUNCTION__));
|
||||
DEBUG ((DEBUG_ERROR, "%a %a: The PRM Module Export Descriptor ordinal value is invalid.\n", _DBGMSGID_, __func__));
|
||||
return EFI_NOT_FOUND;
|
||||
}
|
||||
|
||||
TempExportDescriptor = (PRM_MODULE_EXPORT_DESCRIPTOR_STRUCT *)((UINTN)CurrentImageAddress + ExportAddressTable[PrmModuleExportDescriptorOrdinal]);
|
||||
if (TempExportDescriptor->Header.Signature == PRM_MODULE_EXPORT_DESCRIPTOR_SIGNATURE) {
|
||||
*ExportDescriptor = TempExportDescriptor;
|
||||
DEBUG ((DEBUG_INFO, " %a %a: PRM Module Export Descriptor found at 0x%x.\n", _DBGMSGID_, __FUNCTION__, (UINTN)ExportDescriptor));
|
||||
DEBUG ((DEBUG_INFO, " %a %a: PRM Module Export Descriptor found at 0x%x.\n", _DBGMSGID_, __func__, (UINTN)ExportDescriptor));
|
||||
} else {
|
||||
DEBUG ((
|
||||
DEBUG_INFO,
|
||||
" %a %a: PRM Module Export Descriptor found at 0x%x but signature check failed.\n",
|
||||
_DBGMSGID_,
|
||||
__FUNCTION__,
|
||||
__func__,
|
||||
(UINTN)TempExportDescriptor
|
||||
));
|
||||
}
|
||||
|
||||
DEBUG ((DEBUG_INFO, " %a %a: Exiting export iteration since export descriptor found.\n", _DBGMSGID_, __FUNCTION__));
|
||||
DEBUG ((DEBUG_INFO, " %a %a: Exiting export iteration since export descriptor found.\n", _DBGMSGID_, __func__));
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
}
|
||||
@@ -194,7 +194,7 @@ GetExportDirectoryInPeCoffImage (
|
||||
DEBUG_WARN,
|
||||
"%a %a: The machine type for this image is not valid for a PRM module.\n",
|
||||
_DBGMSGID_,
|
||||
__FUNCTION__
|
||||
__func__
|
||||
));
|
||||
return EFI_UNSUPPORTED;
|
||||
}
|
||||
@@ -208,7 +208,7 @@ GetExportDirectoryInPeCoffImage (
|
||||
// Check the PE/COFF Header Signature. Determine if the image is valid and/or a TE image.
|
||||
//
|
||||
if (OptionalHeaderPtrUnion.Pe32->Signature != EFI_IMAGE_NT_SIGNATURE) {
|
||||
DEBUG ((DEBUG_ERROR, "%a %a: The PE signature is not valid for the current image.\n", _DBGMSGID_, __FUNCTION__));
|
||||
DEBUG ((DEBUG_ERROR, "%a %a: The PE signature is not valid for the current image.\n", _DBGMSGID_, __func__));
|
||||
return EFI_UNSUPPORTED;
|
||||
}
|
||||
|
||||
@@ -237,18 +237,18 @@ GetExportDirectoryInPeCoffImage (
|
||||
//
|
||||
// The directory address overflows
|
||||
//
|
||||
DEBUG ((DEBUG_ERROR, "%a %a: The export directory entry in this image results in overflow.\n", _DBGMSGID_, __FUNCTION__));
|
||||
DEBUG ((DEBUG_ERROR, "%a %a: The export directory entry in this image results in overflow.\n", _DBGMSGID_, __func__));
|
||||
return EFI_UNSUPPORTED;
|
||||
} else {
|
||||
DEBUG ((DEBUG_INFO, "%a %a: Export Directory Entry found in the image at 0x%x.\n", _DBGMSGID_, __FUNCTION__, (UINTN)OptionalHeaderPtrUnion.Pe32));
|
||||
DEBUG ((DEBUG_INFO, " %a %a: Directory Entry Virtual Address = 0x%x.\n", _DBGMSGID_, __FUNCTION__, DirectoryEntry->VirtualAddress));
|
||||
DEBUG ((DEBUG_INFO, "%a %a: Export Directory Entry found in the image at 0x%x.\n", _DBGMSGID_, __func__, (UINTN)OptionalHeaderPtrUnion.Pe32));
|
||||
DEBUG ((DEBUG_INFO, " %a %a: Directory Entry Virtual Address = 0x%x.\n", _DBGMSGID_, __func__, DirectoryEntry->VirtualAddress));
|
||||
|
||||
ExportDirectory = (EFI_IMAGE_EXPORT_DIRECTORY *)((UINTN)Image + DirectoryEntry->VirtualAddress);
|
||||
DEBUG ((
|
||||
DEBUG_INFO,
|
||||
" %a %a: Export Directory Table found successfully at 0x%x. Name address = 0x%x. Name = %a.\n",
|
||||
_DBGMSGID_,
|
||||
__FUNCTION__,
|
||||
__func__,
|
||||
(UINTN)ExportDirectory,
|
||||
((UINTN)Image + ExportDirectory->Name),
|
||||
(CHAR8 *)((UINTN)Image + ExportDirectory->Name)
|
||||
@@ -287,7 +287,7 @@ GetImageVersionInPeCoffImage (
|
||||
EFI_IMAGE_OPTIONAL_HEADER_PTR_UNION OptionalHeaderPtrUnion;
|
||||
UINT16 Magic;
|
||||
|
||||
DEBUG ((DEBUG_INFO, " %a %a - Entry.\n", _DBGMSGID_, __FUNCTION__));
|
||||
DEBUG ((DEBUG_INFO, " %a %a - Entry.\n", _DBGMSGID_, __func__));
|
||||
|
||||
if ((Image == NULL) || (PeCoffLoaderImageContext == NULL) || (ImageMajorVersion == NULL) || (ImageMinorVersion == NULL)) {
|
||||
return EFI_INVALID_PARAMETER;
|
||||
@@ -320,7 +320,7 @@ GetImageVersionInPeCoffImage (
|
||||
DEBUG_WARN,
|
||||
"%a %a: The machine type for this image is not valid for a PRM module.\n",
|
||||
_DBGMSGID_,
|
||||
__FUNCTION__
|
||||
__func__
|
||||
));
|
||||
return EFI_UNSUPPORTED;
|
||||
}
|
||||
@@ -333,7 +333,7 @@ GetImageVersionInPeCoffImage (
|
||||
// Check the PE/COFF Header Signature. Determine if the image is valid and/or a TE image.
|
||||
//
|
||||
if (OptionalHeaderPtrUnion.Pe32->Signature != EFI_IMAGE_NT_SIGNATURE) {
|
||||
DEBUG ((DEBUG_ERROR, "%a %a: The PE signature is not valid for the current image.\n", _DBGMSGID_, __FUNCTION__));
|
||||
DEBUG ((DEBUG_ERROR, "%a %a: The PE signature is not valid for the current image.\n", _DBGMSGID_, __func__));
|
||||
return EFI_UNSUPPORTED;
|
||||
}
|
||||
|
||||
@@ -351,8 +351,8 @@ GetImageVersionInPeCoffImage (
|
||||
*ImageMinorVersion = OptionalHeaderPtrUnion.Pe32Plus->OptionalHeader.MinorImageVersion;
|
||||
}
|
||||
|
||||
DEBUG ((DEBUG_INFO, " %a %a - Image Major Version: 0x%02x.\n", _DBGMSGID_, __FUNCTION__, *ImageMajorVersion));
|
||||
DEBUG ((DEBUG_INFO, " %a %a - Image Minor Version: 0x%02x.\n", _DBGMSGID_, __FUNCTION__, *ImageMinorVersion));
|
||||
DEBUG ((DEBUG_INFO, " %a %a - Image Major Version: 0x%02x.\n", _DBGMSGID_, __func__, *ImageMajorVersion));
|
||||
DEBUG ((DEBUG_INFO, " %a %a - Image Minor Version: 0x%02x.\n", _DBGMSGID_, __func__, *ImageMinorVersion));
|
||||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
@@ -404,7 +404,7 @@ GetExportEntryAddress (
|
||||
|
||||
ASSERT (CurrentExportOrdinal < ImageExportDirectory->NumberOfFunctions);
|
||||
if (CurrentExportOrdinal >= ImageExportDirectory->NumberOfFunctions) {
|
||||
DEBUG ((DEBUG_ERROR, " %a %a: The export ordinal value is invalid.\n", _DBGMSGID_, __FUNCTION__));
|
||||
DEBUG ((DEBUG_ERROR, " %a %a: The export ordinal value is invalid.\n", _DBGMSGID_, __func__));
|
||||
break;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user