mirror of https://github.com/acidanthera/audk.git
ArmVirtPkg/FdtClientDxe: supplement missing EFIAPI calling conv specifiers
Add missing EFIAPI calling convention specifiers to STATIC function that are exposed via the FdtClientProtocol interface. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Laszlo Ersek <lersek@redhat.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
This commit is contained in:
parent
198a46d768
commit
eec1ba7dab
|
@ -29,6 +29,7 @@ STATIC VOID *mDeviceTreeBase;
|
|||
|
||||
STATIC
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
GetNodeProperty (
|
||||
IN FDT_CLIENT_PROTOCOL *This,
|
||||
IN INT32 Node,
|
||||
|
@ -55,6 +56,7 @@ GetNodeProperty (
|
|||
|
||||
STATIC
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
SetNodeProperty (
|
||||
IN FDT_CLIENT_PROTOCOL *This,
|
||||
IN INT32 Node,
|
||||
|
@ -267,6 +269,7 @@ FindMemoryNodeReg (
|
|||
|
||||
STATIC
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
GetOrInsertChosenNode (
|
||||
IN FDT_CLIENT_PROTOCOL *This,
|
||||
OUT INT32 *Node
|
||||
|
|
Loading…
Reference in New Issue