ArmPkg/ArmGic: Drop declarations for non-existent functions

Drop some ArmGicLib declarations that don't actually exist in the code.

Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
This commit is contained in:
Ard Biesheuvel 2025-01-16 16:46:20 +01:00 committed by mergify[bot]
parent 2ab362f313
commit 298d8c436a

View File

@ -116,23 +116,6 @@ ArmGicGetInterfaceIdentification (
IN UINTN GicInterruptInterfaceBase
);
// GIC Secure interfaces
VOID
EFIAPI
ArmGicSetupNonSecure (
IN UINTN MpId,
IN UINTN GicDistributorBase,
IN UINTN GicInterruptInterfaceBase
);
VOID
EFIAPI
ArmGicSetSecureInterrupts (
IN UINTN GicDistributorBase,
IN UINTN *GicSecureInterruptMask,
IN UINTN GicSecureInterruptMaskSize
);
VOID
EFIAPI
ArmGicDisableDistributor (
@ -145,13 +128,6 @@ ArmGicGetMaxNumInterrupts (
IN UINTN GicDistributorBase
);
UINTN
EFIAPI
ArmGicSetPriorityMask (
IN UINTN GicInterruptInterfaceBase,
IN INTN PriorityMask
);
// GIC revision 2 specific declarations
// Interrupts from 1020 to 1023 are considered as special interrupts
@ -159,14 +135,6 @@ ArmGicSetPriorityMask (
#define ARM_GIC_IS_SPECIAL_INTERRUPTS(Interrupt) \
(((Interrupt) >= 1020) && ((Interrupt) <= 1023))
VOID
EFIAPI
ArmGicV2SetupNonSecure (
IN UINTN MpId,
IN UINTN GicDistributorBase,
IN UINTN GicInterruptInterfaceBase
);
VOID
EFIAPI
ArmGicV2EnableInterruptInterface (