Branch: refs/heads/master Home: https://github.com/tianocore/edk2 Commit: f2cc962cd28fe75fb4edf230d69e99c346fe9c8a https://github.com/tianocore/edk2/commit/f2cc962cd28fe75fb4edf230d69e99c346fe9c8a Author: Rebecca Cran <rebe...@bsdio.com> Date: 2023-04-10 (Mon, 10 Apr 2023)
Changed paths: M ArmPkg/Drivers/ArmGic/ArmGicCommonDxe.c M ArmPkg/Drivers/CpuDxe/MemoryAttribute.c M ArmPkg/Library/ArmMmuLib/AArch64/ArmMmuLibCore.c M ArmPkg/Library/ArmPsciResetSystemLib/ArmPsciResetSystemLib.c M ArmPkg/Library/LinuxBootBootManagerLib/LinuxBootBm.c M ArmPkg/Library/PlatformBootManagerLib/PlatformBm.c M ArmPkg/Universal/Smbios/ProcessorSubClassDxe/ProcessorSubClass.c M ArmPkg/Universal/Smbios/SmbiosMiscDxe/Type00/MiscBiosVendorFunction.c M ArmPkg/Universal/Smbios/SmbiosMiscDxe/Type01/MiscSystemManufacturerFunction.c M ArmPkg/Universal/Smbios/SmbiosMiscDxe/Type02/MiscBaseBoardManufacturerFunction.c M ArmPkg/Universal/Smbios/SmbiosMiscDxe/Type03/MiscChassisManufacturerFunction.c M ArmPkg/Universal/Smbios/SmbiosMiscDxe/Type13/MiscNumberOfInstallableLanguagesFunction.c M ArmPkg/Universal/Smbios/SmbiosMiscDxe/Type32/MiscBootInformationFunction.c Log Message: ----------- ArmPkg: 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 ArmPkg. Signed-off-by: Rebecca Cran <rebe...@bsdio.com> Reviewed-by: Michael D Kinney <michael.d.kin...@intel.com> Reviewed-by: Ard Biesheuvel <a...@kernel.org> Commit: 1639b6bf074c2ee694473d849e1dfa2028f78eab https://github.com/tianocore/edk2/commit/1639b6bf074c2ee694473d849e1dfa2028f78eab Author: Rebecca Cran <rebe...@bsdio.com> Date: 2023-04-10 (Mon, 10 Apr 2023) Changed paths: M ArmVirtPkg/CloudHvAcpiPlatformDxe/CloudHvAcpi.c M ArmVirtPkg/Library/ArmVirtGicArchLib/ArmVirtGicArchLib.c M ArmVirtPkg/Library/ArmVirtPL031FdtClientLib/ArmVirtPL031FdtClientLib.c M ArmVirtPkg/Library/ArmVirtPsciResetSystemLib/ArmVirtPsciResetSystemLib.c M ArmVirtPkg/Library/ArmVirtPsciResetSystemPeiLib/ArmVirtPsciResetSystemPeiLib.c M ArmVirtPkg/Library/CloudHvVirtMemInfoLib/CloudHvVirtMemInfoLib.c M ArmVirtPkg/Library/KvmtoolRtcFdtClientLib/KvmtoolRtcFdtClientLib.c M ArmVirtPkg/Library/KvmtoolVirtMemInfoLib/KvmtoolVirtMemInfoLib.c M ArmVirtPkg/Library/NorFlashKvmtoolLib/NorFlashKvmtool.c M ArmVirtPkg/Library/NorFlashQemuLib/NorFlashQemuLib.c M ArmVirtPkg/Library/PlatformBootManagerLib/PlatformBm.c M ArmVirtPkg/Library/PlatformBootManagerLib/QemuKernel.c M ArmVirtPkg/Library/PlatformPeiLib/PlatformPeiLib.c M ArmVirtPkg/Library/QemuVirtMemInfoLib/QemuVirtMemInfoLib.c M ArmVirtPkg/Library/QemuVirtMemInfoLib/QemuVirtMemInfoPeiLibConstructor.c M ArmVirtPkg/XenAcpiPlatformDxe/XenAcpiPlatformDxe.c M ArmVirtPkg/XenioFdtDxe/XenioFdtDxe.c Log Message: ----------- ArmVirtPkg: 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 ArmVirtPkg. Signed-off-by: Rebecca Cran <rebe...@bsdio.com> Reviewed-by: Michael D Kinney <michael.d.kin...@intel.com> Reviewed-by: Ard Biesheuvel <a...@kernel.org> Commit: 089013a69724687f4051fc88367c9eb74def4284 https://github.com/tianocore/edk2/commit/089013a69724687f4051fc88367c9eb74def4284 Author: Rebecca Cran <rebe...@bsdio.com> Date: 2023-04-10 (Mon, 10 Apr 2023) Changed paths: M UefiCpuPkg/CpuDxe/CpuDxe.c M UefiCpuPkg/CpuDxeRiscV64/CpuDxe.c M UefiCpuPkg/CpuS3DataDxe/CpuS3Data.c M UefiCpuPkg/Library/BaseRiscV64CpuExceptionHandlerLib/CpuExceptionHandlerLib.c M UefiCpuPkg/Library/CpuExceptionHandlerLib/UnitTest/CpuExceptionHandlerTestCommon.c M UefiCpuPkg/Library/MpInitLib/DxeMpLib.c M UefiCpuPkg/Library/MpInitLib/Microcode.c M UefiCpuPkg/Library/MpInitLib/MpLib.c M UefiCpuPkg/Library/MpInitLib/PeiMpLib.c M UefiCpuPkg/PiSmmCpuDxeSmm/CpuS3.c M UefiCpuPkg/SecCore/SecMain.c M UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServicesUnitTestCommom.c M UefiCpuPkg/Universal/Acpi/S3Resume2Pei/S3Resume.c Log Message: ----------- UefiCpuPkg: 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 UefiCpuPkg. Signed-off-by: Rebecca Cran <rebe...@bsdio.com> Reviewed-by: Michael D Kinney <michael.d.kin...@intel.com> Reviewed-by: Ard Biesheuvel <a...@kernel.org> Reviewed-by: Ray Ni <ray...@intel.com> Reviewed-by: Sunil V L <suni...@ventanamicro.com> Commit: 8ba392687b6f7fcb6e333756edd090003c57402e https://github.com/tianocore/edk2/commit/8ba392687b6f7fcb6e333756edd090003c57402e Author: Rebecca Cran <rebe...@bsdio.com> Date: 2023-04-10 (Mon, 10 Apr 2023) Changed paths: M OvmfPkg/AcpiPlatformDxe/BootScript.c M OvmfPkg/AcpiPlatformDxe/CloudHvAcpi.c M OvmfPkg/AcpiPlatformDxe/EntryPoint.c M OvmfPkg/AcpiPlatformDxe/PciDecoding.c M OvmfPkg/AcpiPlatformDxe/QemuFwCfgAcpi.c M OvmfPkg/AmdSev/BlobVerifierLibSevHashes/BlobVerifierSevHashes.c M OvmfPkg/AmdSevDxe/AmdSevDxe.c M OvmfPkg/Bhyve/AcpiPlatformDxe/EntryPoint.c M OvmfPkg/Bhyve/AcpiPlatformDxe/PciDecoding.c M OvmfPkg/Bhyve/BhyveRfbDxe/VbeShim.c M OvmfPkg/Bhyve/PlatformPei/ClearCache.c M OvmfPkg/Bhyve/PlatformPei/MemDetect.c M OvmfPkg/Bhyve/PlatformPei/Platform.c M OvmfPkg/CpuHotplugSmm/CpuHotplug.c M OvmfPkg/CpuHotplugSmm/QemuCpuhp.c M OvmfPkg/CpuHotplugSmm/Smbase.c M OvmfPkg/CpuS3DataDxe/CpuS3Data.c M OvmfPkg/Csm/CsmSupportLib/LegacyInterrupt.c M OvmfPkg/Csm/CsmSupportLib/LegacyRegion.c M OvmfPkg/EnrollDefaultKeys/EnrollDefaultKeys.c M OvmfPkg/Fdt/FdtPciHostBridgeLib/FdtPciHostBridgeLib.c M OvmfPkg/Fdt/FdtPciPcdProducerLib/FdtPciPcdProducerLib.c M OvmfPkg/Fdt/HighMemDxe/HighMemDxe.c M OvmfPkg/Fdt/VirtioFdtDxe/VirtioFdtDxe.c M OvmfPkg/IncompatiblePciDeviceSupportDxe/IncompatiblePciDeviceSupport.c M OvmfPkg/IoMmuDxe/CcIoMmu.c M OvmfPkg/IoMmuDxe/IoMmuBuffer.c M OvmfPkg/Library/AcpiTimerLib/BaseAcpiTimerLib.c M OvmfPkg/Library/AcpiTimerLib/BaseRomAcpiTimerLib.c M OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.c M OvmfPkg/Library/BaseMemEncryptSevLib/X64/PeiDxeVirtualMemory.c M OvmfPkg/Library/BaseMemEncryptSevLib/X64/SnpPageStateChangeInternal.c M OvmfPkg/Library/BaseMemEncryptTdxLib/MemoryEncryption.c M OvmfPkg/Library/BasePciCapLib/BasePciCapLib.c M OvmfPkg/Library/CcExitLib/CcExitVeHandler.c M OvmfPkg/Library/GenericQemuLoadImageLib/GenericQemuLoadImageLib.c M OvmfPkg/Library/HardwareInfoLib/HardwareInfoDxe.c M OvmfPkg/Library/LockBoxLib/LockBoxLib.c M OvmfPkg/Library/PciHostBridgeUtilityLib/PciHostBridgeUtilityLib.c M OvmfPkg/Library/PeilessStartupLib/X64/VirtualMemory.c M OvmfPkg/Library/PlatformBmPrintScLib/StatusCodeHandler.c M OvmfPkg/Library/PlatformBootManagerLib/BdsPlatform.c M OvmfPkg/Library/PlatformBootManagerLib/QemuKernel.c M OvmfPkg/Library/PlatformBootManagerLibBhyve/BdsPlatform.c M OvmfPkg/Library/PlatformBootManagerLibGrub/BdsPlatform.c M OvmfPkg/Library/PlatformBootManagerLibGrub/QemuKernel.c M OvmfPkg/Library/PlatformInitLib/MemDetect.c M OvmfPkg/Library/PlatformInitLib/Platform.c M OvmfPkg/Library/QemuBootOrderLib/ExtraRootBusMap.c M OvmfPkg/Library/QemuBootOrderLib/QemuBootOrderLib.c M OvmfPkg/Library/QemuFwCfgLib/QemuFwCfgDxe.c M OvmfPkg/Library/QemuFwCfgLib/QemuFwCfgLibMmio.c M OvmfPkg/Library/QemuFwCfgS3Lib/QemuFwCfgS3Dxe.c M OvmfPkg/Library/ResetSystemLib/DxeResetSystemLibMicrovm.c M OvmfPkg/Library/ResetSystemLib/ResetSystemLibMicrovm.c M OvmfPkg/Library/SerializeVariablesLib/SerializeVariablesLib.c M OvmfPkg/Library/SmbiosVersionLib/DetectSmbiosVersionLib.c M OvmfPkg/Library/SmmCpuFeaturesLib/SmmCpuFeaturesLib.c M OvmfPkg/Library/TlsAuthConfigLib/TlsAuthConfigLib.c M OvmfPkg/Library/VirtioMmioDeviceLib/VirtioMmioDevice.c M OvmfPkg/Library/X86QemuLoadImageLib/X86QemuLoadImageLib.c M OvmfPkg/Library/XenIoMmioLib/XenIoMmioLib.c M OvmfPkg/LinuxInitrdDynamicShellCommand/LinuxInitrdDynamicShellCommand.c M OvmfPkg/LsiScsiDxe/LsiScsi.c M OvmfPkg/MptScsiDxe/MptScsi.c M OvmfPkg/PciHotPlugInitDxe/PciHotPlugInit.c M OvmfPkg/PlatformDxe/Platform.c M OvmfPkg/PlatformPei/ClearCache.c M OvmfPkg/PlatformPei/FeatureControl.c M OvmfPkg/PlatformPei/MemDetect.c M OvmfPkg/PlatformPei/MemTypeInfo.c M OvmfPkg/PlatformPei/Platform.c M OvmfPkg/PvScsiDxe/PvScsi.c M OvmfPkg/QemuKernelLoaderFsDxe/QemuKernelLoaderFsDxe.c M OvmfPkg/QemuRamfbDxe/QemuRamfb.c M OvmfPkg/QemuVideoDxe/Gop.c M OvmfPkg/QemuVideoDxe/Initialize.c M OvmfPkg/QemuVideoDxe/VbeShim.c M OvmfPkg/RiscVVirt/Library/PlatformBootManagerLib/PlatformBm.c M OvmfPkg/RiscVVirt/Library/PlatformBootManagerLib/QemuKernel.c M OvmfPkg/RiscVVirt/Library/PrePiHobListPointerLib/PrePiHobListPointer.c M OvmfPkg/RiscVVirt/Sec/Memory.c M OvmfPkg/RiscVVirt/Sec/Platform.c M OvmfPkg/RiscVVirt/Sec/SecMain.c M OvmfPkg/Sec/SecMain.c M OvmfPkg/SmmAccess/SmmAccessPei.c M OvmfPkg/SmmControl2Dxe/SmiFeatures.c M OvmfPkg/SmmControl2Dxe/SmmControl2Dxe.c M OvmfPkg/Tcg/Tcg2Config/Tcg2ConfigPeim.c M OvmfPkg/Tcg/TpmMmioSevDecryptPei/TpmMmioSevDecryptPeim.c M OvmfPkg/TdxDxe/TdxAcpiTable.c M OvmfPkg/VirtNorFlashDxe/VirtNorFlashDxe.c M OvmfPkg/VirtNorFlashDxe/VirtNorFlashFvb.c M OvmfPkg/VirtioBlkDxe/VirtioBlk.c M OvmfPkg/VirtioFsDxe/FuseFlush.c M OvmfPkg/VirtioFsDxe/FuseFsync.c M OvmfPkg/VirtioFsDxe/FuseGetAttr.c M OvmfPkg/VirtioFsDxe/FuseInit.c M OvmfPkg/VirtioFsDxe/FuseLookup.c M OvmfPkg/VirtioFsDxe/FuseMkDir.c M OvmfPkg/VirtioFsDxe/FuseOpen.c M OvmfPkg/VirtioFsDxe/FuseOpenDir.c M OvmfPkg/VirtioFsDxe/FuseOpenOrCreate.c M OvmfPkg/VirtioFsDxe/FuseRead.c M OvmfPkg/VirtioFsDxe/FuseRelease.c M OvmfPkg/VirtioFsDxe/FuseRename.c M OvmfPkg/VirtioFsDxe/FuseSetAttr.c M OvmfPkg/VirtioFsDxe/FuseStatFs.c M OvmfPkg/VirtioFsDxe/FuseUnlink.c M OvmfPkg/VirtioFsDxe/FuseWrite.c M OvmfPkg/VirtioFsDxe/Helpers.c M OvmfPkg/VirtioFsDxe/SimpleFsOpen.c M OvmfPkg/VirtioGpuDxe/Commands.c M OvmfPkg/VirtioGpuDxe/DriverBinding.c M OvmfPkg/VirtioGpuDxe/Gop.c M OvmfPkg/VirtioNetDxe/Events.c M OvmfPkg/VirtioRngDxe/VirtioRng.c M OvmfPkg/VirtioScsiDxe/VirtioScsi.c M OvmfPkg/XenAcpiPlatformDxe/Xen.c M OvmfPkg/XenPlatformPei/ClearCache.c M OvmfPkg/XenPlatformPei/MemDetect.c M OvmfPkg/XenPlatformPei/Platform.c M OvmfPkg/XenPvBlkDxe/BlockFront.c Log Message: ----------- OvmfPkg: 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 OvmfPkg. Signed-off-by: Rebecca Cran <rebe...@bsdio.com> Reviewed-by: Michael D Kinney <michael.d.kin...@intel.com> Reviewed-by: Ard Biesheuvel <a...@kernel.org> Reviewed-by: Sunil V L <suni...@ventanamicro.com> Commit: 7b82da70edf7dda2c6f4e853f100df620bd5c0f3 https://github.com/tianocore/edk2/commit/7b82da70edf7dda2c6f4e853f100df620bd5c0f3 Author: Rebecca Cran <rebe...@bsdio.com> Date: 2023-04-10 (Mon, 10 Apr 2023) Changed paths: M MdeModulePkg/Bus/Ata/AhciPei/AhciMode.c M MdeModulePkg/Bus/Ata/AhciPei/AhciPei.c M MdeModulePkg/Bus/Ata/AhciPei/AhciPeiBlockIo.c M MdeModulePkg/Bus/Pci/EhciDxe/Ehci.c M MdeModulePkg/Bus/Pci/EhciDxe/EhciSched.c M MdeModulePkg/Bus/Pci/NonDiscoverablePciDeviceDxe/NonDiscoverablePciDeviceIo.c M MdeModulePkg/Bus/Pci/NvmExpressDxe/NvmExpressBlockIo.c M MdeModulePkg/Bus/Pci/NvmExpressPei/NvmExpressPei.c M MdeModulePkg/Bus/Pci/NvmExpressPei/NvmExpressPeiBlockIo.c M MdeModulePkg/Bus/Pci/NvmExpressPei/NvmExpressPeiHci.c M MdeModulePkg/Bus/Pci/NvmExpressPei/NvmExpressPeiPassThru.c M MdeModulePkg/Bus/Pci/PciBusDxe/PciCommand.c M MdeModulePkg/Bus/Pci/PciHostBridgeDxe/PciHostBridge.c M MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHcDxe.c M MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHci.c M MdeModulePkg/Bus/Pci/XhciDxe/Xhci.c M MdeModulePkg/Bus/Pci/XhciDxe/XhciSched.c M MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDisk.c M MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c M MdeModulePkg/Core/Dxe/DxeMain/DxeMain.c M MdeModulePkg/Core/Dxe/Misc/MemoryProtection.c M MdeModulePkg/Core/Dxe/SectionExtraction/CoreSectionExtraction.c M MdeModulePkg/Core/DxeIplPeim/Ia32/DxeLoadFunc.c M MdeModulePkg/Core/DxeIplPeim/RiscV64/DxeLoadFunc.c M MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c M MdeModulePkg/Core/Pei/FwVol/FwVol.c M MdeModulePkg/Library/DxeCapsuleLibFmp/DxeCapsuleReportLib.c M MdeModulePkg/Library/PiDxeS3BootScriptLib/BootScriptSave.c M MdeModulePkg/Library/ResetUtilityLib/ResetUtility.c M MdeModulePkg/Library/UefiBootManagerLib/BmBoot.c M MdeModulePkg/Library/UefiBootManagerLib/BmDriverHealth.c M MdeModulePkg/Library/VarCheckPolicyLib/VarCheckPolicyLib.c M MdeModulePkg/Library/VariablePolicyLib/VariablePolicyLib.c M MdeModulePkg/Universal/CapsulePei/UefiCapsule.c M MdeModulePkg/Universal/CapsulePei/X64/X64Entry.c M MdeModulePkg/Universal/Disk/PartitionDxe/Udf.c M MdeModulePkg/Universal/Disk/UdfDxe/File.c M MdeModulePkg/Universal/Disk/UdfDxe/FileSystemOperations.c M MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWrite.c M MdeModulePkg/Universal/FaultTolerantWriteDxe/FtwMisc.c M MdeModulePkg/Universal/PCD/Dxe/Service.c M MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.c M MdeModulePkg/Universal/Variable/RuntimeDxe/TcgMorLockDxe.c M MdeModulePkg/Universal/Variable/RuntimeDxe/TcgMorLockSmm.c M MdeModulePkg/Universal/Variable/RuntimeDxe/Variable.c M MdeModulePkg/Universal/Variable/RuntimeDxe/VariableLockRequestToLock.c M MdeModulePkg/Universal/Variable/RuntimeDxe/VariablePolicySmmDxe.c Log Message: ----------- MdeModulePkg: 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 MdeModulePkg. Signed-off-by: Rebecca Cran <rebe...@bsdio.com> Reviewed-by: Michael D Kinney <michael.d.kin...@intel.com> Reviewed-by: Ard Biesheuvel <a...@kernel.org> Commit: dd0b33e3e55957aecbae6aa5cebdc6c14e6e8932 https://github.com/tianocore/edk2/commit/dd0b33e3e55957aecbae6aa5cebdc6c14e6e8932 Author: Rebecca Cran <rebe...@bsdio.com> Date: 2023-04-10 (Mon, 10 Apr 2023) Changed paths: M SecurityPkg/HddPassword/HddPasswordDxe.c M SecurityPkg/HddPassword/HddPasswordPei.c M SecurityPkg/Library/AuthVariableLib/AuthService.c M SecurityPkg/Library/PeiDxeTpmPlatformHierarchyLib/PeiDxeTpmPlatformHierarchyLib.c M SecurityPkg/Library/PlatformPKProtectionLibVarPolicy/PlatformPKProtectionLibVarPolicy.c M SecurityPkg/Library/SecureBootVariableLib/SecureBootVariableLib.c M SecurityPkg/Library/SecureBootVariableLib/UnitTest/SecureBootVariableLibUnitTest.c M SecurityPkg/Library/SecureBootVariableProvisionLib/SecureBootVariableProvisionLib.c M SecurityPkg/Tcg/Opal/OpalPassword/OpalDriver.c M SecurityPkg/Tcg/Opal/OpalPassword/OpalHii.c M SecurityPkg/Tcg/Opal/OpalPassword/OpalPasswordPei.c M SecurityPkg/Tcg/Tcg2Acpi/Tcg2Acpi.c M SecurityPkg/Tcg/Tcg2Pei/Tcg2Pei.c M SecurityPkg/Tcg/Tcg2Smm/Tcg2Smm.c M SecurityPkg/Tcg/TdTcg2Dxe/TdTcg2Dxe.c M SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/SecureBootConfigImpl.c M SecurityPkg/VariableAuthenticated/SecureBootDefaultKeysDxe/SecureBootDefaultKeysDxe.c Log Message: ----------- SecurityPkg: 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 SecurityPkg. Signed-off-by: Rebecca Cran <rebe...@bsdio.com> Reviewed-by: Michael D Kinney <michael.d.kin...@intel.com> Reviewed-by: Ard Biesheuvel <a...@kernel.org> Commit: ccbbb4b1c5bd039673c783eec281bd52a2407ffd https://github.com/tianocore/edk2/commit/ccbbb4b1c5bd039673c783eec281bd52a2407ffd Author: Rebecca Cran <rebe...@bsdio.com> Date: 2023-04-10 (Mon, 10 Apr 2023) Changed paths: M EmbeddedPkg/Drivers/ConsolePrefDxe/ConsolePrefDxe.c M EmbeddedPkg/Drivers/DtPlatformDxe/DtPlatformDxe.c M EmbeddedPkg/Drivers/FdtClientDxe/FdtClientDxe.c M EmbeddedPkg/Library/NonCoherentDmaLib/NonCoherentDmaLib.c M EmbeddedPkg/RealTimeClockRuntimeDxe/RealTimeClock.c M EmbeddedPkg/Universal/MmcDxe/MmcIdentification.c Log Message: ----------- EmbeddedPkg: 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 EmbeddedPkg. Signed-off-by: Rebecca Cran <rebe...@bsdio.com> Reviewed-by: Michael D Kinney <michael.d.kin...@intel.com> Reviewed-by: Ard Biesheuvel <a...@kernel.org> Reviewed-by: Abner Chang <abner.ch...@amd.com> Commit: 997419d16fcd400d7cfb0dbbc3c37ef1239fb962 https://github.com/tianocore/edk2/commit/997419d16fcd400d7cfb0dbbc3c37ef1239fb962 Author: Rebecca Cran <rebe...@bsdio.com> Date: 2023-04-10 (Mon, 10 Apr 2023) Changed paths: M RedfishPkg/Library/PlatformHostInterfaceBmcUsbNicLib/PlatformHostInterfaceBmcUsbNicLib.c M RedfishPkg/Library/RedfishPlatformCredentialIpmiLib/RedfishPlatformCredentialIpmiLib.c M RedfishPkg/PrivateLibrary/RedfishLib/RedfishLib.c M RedfishPkg/PrivateLibrary/RedfishLib/edk2libredfish/src/service.c M RedfishPkg/RedfishConfigHandler/RedfishConfigHandlerCommon.c M RedfishPkg/RedfishConfigHandler/RedfishConfigHandlerDriver.c M RedfishPkg/RedfishDiscoverDxe/RedfishDiscoverDxe.c M RedfishPkg/RedfishHostInterfaceDxe/RedfishHostInterfaceDxe.c M RedfishPkg/RedfishRestExDxe/RedfishRestExImpl.c Log Message: ----------- RedfishPkg: 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 RedfishPkg. Signed-off-by: Rebecca Cran <rebe...@bsdio.com> Reviewed-by: Michael D Kinney <michael.d.kin...@intel.com> Ard Biesheuvel <a...@kernel.org> Reviewed-by: Nickle Wang <nick...@nvidia.com> Commit: f20e35982b9172b0823e76315686f962640fb894 https://github.com/tianocore/edk2/commit/f20e35982b9172b0823e76315686f962640fb894 Author: Rebecca Cran <rebe...@bsdio.com> Date: 2023-04-10 (Mon, 10 Apr 2023) Changed paths: M ArmPlatformPkg/Drivers/SP805WatchdogDxe/SP805Watchdog.c Log Message: ----------- ArmPlatformPkg: 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 ArmPlatformPkg. Signed-off-by: Rebecca Cran <rebe...@bsdio.com> Reviewed-by: Michael D Kinney <michael.d.kin...@intel.com> Reviewed-by: Ard Biesheuvel <a...@kernel.org> Commit: 1295e37d4bb4c07f41cfa6ce298344aaf1563c72 https://github.com/tianocore/edk2/commit/1295e37d4bb4c07f41cfa6ce298344aaf1563c72 Author: Rebecca Cran <rebe...@bsdio.com> Date: 2023-04-10 (Mon, 10 Apr 2023) Changed paths: M UnitTestFrameworkPkg/Library/UnitTestBootLibUsbClass/UnitTestBootLibUsbClass.c M UnitTestFrameworkPkg/Library/UnitTestLib/Log.c M UnitTestFrameworkPkg/Library/UnitTestLib/UnitTestLib.c M UnitTestFrameworkPkg/Library/UnitTestPersistenceLibSimpleFileSystem/UnitTestPersistenceLibSimpleFileSystem.c M UnitTestFrameworkPkg/Library/UnitTestResultReportLib/UnitTestResultReportLib.c M UnitTestFrameworkPkg/Library/UnitTestResultReportLib/UnitTestResultReportLibConOut.c M UnitTestFrameworkPkg/Library/UnitTestResultReportLib/UnitTestResultReportLibDebugLib.c Log Message: ----------- UnitTestFrameworkPkg: Update 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 UnitTestFrameworkPkg. Signed-off-by: Rebecca Cran <rebe...@bsdio.com> Reviewed-by: Michael D Kinney <michael.d.kin...@intel.com> Reviewed-by: Ard Biesheuvel <a...@kernel.org> Commit: 9e7b042ecba5f78f9fb72d6bb50f8dbc5a32ecac https://github.com/tianocore/edk2/commit/9e7b042ecba5f78f9fb72d6bb50f8dbc5a32ecac Author: Rebecca Cran <rebe...@bsdio.com> Date: 2023-04-10 (Mon, 10 Apr 2023) Changed paths: M PrmPkg/Application/PrmInfo/PrmInfo.c M PrmPkg/Library/DxePrmContextBufferLib/DxePrmContextBufferLib.c M PrmPkg/Library/DxePrmContextBufferLib/UnitTest/DxePrmContextBufferLibUnitTest.c M PrmPkg/Library/DxePrmModuleDiscoveryLib/DxePrmModuleDiscoveryLib.c M PrmPkg/Library/DxePrmPeCoffLib/DxePrmPeCoffLib.c M PrmPkg/PrmConfigDxe/PrmConfigDxe.c M PrmPkg/PrmLoaderDxe/PrmLoaderDxe.c M PrmPkg/PrmSsdtInstallDxe/PrmSsdtInstallDxe.c Log Message: ----------- 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 <rebe...@bsdio.com> Reviewed-by: Michael D Kinney <michael.d.kin...@intel.com> Reviewed-by: Ard Biesheuvel <a...@kernel.org> Commit: f1d31a6ec7d5a4251d441a62b2cc6f11f0f49da4 https://github.com/tianocore/edk2/commit/f1d31a6ec7d5a4251d441a62b2cc6f11f0f49da4 Author: Rebecca Cran <rebe...@bsdio.com> Date: 2023-04-10 (Mon, 10 Apr 2023) Changed paths: M StandaloneMmPkg/Library/StandaloneMmCoreEntryPoint/Arm/SetPermissions.c M StandaloneMmPkg/Library/StandaloneMmMemLib/X86StandaloneMmMemLibInternal.c M StandaloneMmPkg/Library/StandaloneMmPeCoffExtraActionLib/AArch64/StandaloneMmPeCoffExtraActionLib.c Log Message: ----------- StandaloneMmPkg: 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 StandaloneMmPkg. Signed-off-by: Rebecca Cran <rebe...@bsdio.com> Reviewed-by: Michael D Kinney <michael.d.kin...@intel.com> Reviewed-by: Ard Biesheuvel <a...@kernel.org> Commit: 74ce342f1828469fce3221b0b917347cad71f665 https://github.com/tianocore/edk2/commit/74ce342f1828469fce3221b0b917347cad71f665 Author: Rebecca Cran <rebe...@bsdio.com> Date: 2023-04-10 (Mon, 10 Apr 2023) Changed paths: M CryptoPkg/Library/TlsLib/TlsConfig.c M CryptoPkg/Library/TlsLib/TlsProcess.c Log Message: ----------- CryptoPkg: 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 CryptoPkg. Signed-off-by: Rebecca Cran <rebe...@bsdio.com> Reviewed-by: Michael D Kinney <michael.d.kin...@intel.com> Reviewed-by: Ard Biesheuvel <a...@kernel.org> Commit: 84f553cb63c6a2b37fe95cca5ea9ddc078ca2be9 https://github.com/tianocore/edk2/commit/84f553cb63c6a2b37fe95cca5ea9ddc078ca2be9 Author: Rebecca Cran <rebe...@bsdio.com> Date: 2023-04-10 (Mon, 10 Apr 2023) Changed paths: M NetworkPkg/HttpDxe/HttpsSupport.c M NetworkPkg/IScsiDxe/IScsiMisc.c Log Message: ----------- NetworkPkg: 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 NetworkPkg. Signed-off-by: Rebecca Cran <rebe...@bsdio.com> Reviewed-by: Michael D Kinney <michael.d.kin...@intel.com> Reviewed-by: Ard Biesheuvel <a...@kernel.org> Commit: 457b4e42f7dbf8703b653fb54503af5abc4c07cf https://github.com/tianocore/edk2/commit/457b4e42f7dbf8703b653fb54503af5abc4c07cf Author: Rebecca Cran <rebe...@bsdio.com> Date: 2023-04-10 (Mon, 10 Apr 2023) Changed paths: M SourceLevelDebugPkg/Library/DebugCommunicationLibUsb3/DebugCommunicationLibUsb3Dxe.c M SourceLevelDebugPkg/Library/DebugCommunicationLibUsb3/DebugCommunicationLibUsb3Pei.c Log Message: ----------- SourceLevelDebugPkg: 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 SourceLevelDebugPkg. Signed-off-by: Rebecca Cran <rebe...@bsdio.com> Reviewed-by: Michael D Kinney <michael.d.kin...@intel.com> Reviewed-by: Ard Biesheuvel <a...@kernel.org> Reviewed-by: Ray Ni <ray...@intel.com> Commit: 66f6a64dd970a05ee45723b37fcafc5f49f52745 https://github.com/tianocore/edk2/commit/66f6a64dd970a05ee45723b37fcafc5f49f52745 Author: Rebecca Cran <rebe...@bsdio.com> Date: 2023-04-10 (Mon, 10 Apr 2023) Changed paths: M EmulatorPkg/Library/RedfishPlatformHostInterfaceLib/RedfishPlatformHostInterfaceLib.c M EmulatorPkg/Win/Host/WinPacketFilter.c Log Message: ----------- EmulatorPkg: 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 EmulatorPkg. Signed-off-by: Rebecca Cran <rebe...@bsdio.com> Reviewed-by: Michael D Kinney <michael.d.kin...@intel.com> Reviewed-by: Ard Biesheuvel <a...@kernel.org> Reviewed-by: Abner Chang <abner.ch...@amd.com> Reviewed-by: Ray Ni <ray...@intel.com> Commit: 33f30cfec2e37a6012860ec88c7b0ae21f3d72bf https://github.com/tianocore/edk2/commit/33f30cfec2e37a6012860ec88c7b0ae21f3d72bf Author: Rebecca Cran <rebe...@bsdio.com> Date: 2023-04-10 (Mon, 10 Apr 2023) Changed paths: M UefiPayloadPkg/Library/PciHostBridgeLib/PciHostBridgeLib.c M UefiPayloadPkg/UefiPayloadEntry/Ia32/DxeLoadFunc.c Log Message: ----------- UefiPayloadPkg: 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 UefiPayloadPkg. Signed-off-by: Rebecca Cran <rebe...@bsdio.com> Reviewed-by: Michael D Kinney <michael.d.kin...@intel.com> Reviewed-by: Ard Biesheuvel <a...@kernel.org> Reviewed-by: Gua Guo <gua....@intel.com> Reviewed-by: James Lu <james...@intel.com> Commit: 61652efd04a7585a779226137d0f9739a75aac69 https://github.com/tianocore/edk2/commit/61652efd04a7585a779226137d0f9739a75aac69 Author: Rebecca Cran <rebe...@bsdio.com> Date: 2023-04-10 (Mon, 10 Apr 2023) Changed paths: M FmpDevicePkg/FmpDxe/VariableSupport.c Log Message: ----------- FmpDevicePkg: 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 FmpDevicePkg. Signed-off-by: Rebecca Cran <rebe...@bsdio.com> Reviewed-by: Michael D Kinney <michael.d.kin...@intel.com> Reviewed-by: Ard Biesheuvel <a...@kernel.org> Reviewed-by: Wei6 Xu <wei6...@intel.com> Compare: https://github.com/tianocore/edk2/compare/cf4af503fb61...61652efd04a7 _______________________________________________ edk2-commits mailing list edk2-commits@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/edk2-commits