mirror of https://github.com/acidanthera/audk.git
ArmPkg: Fix return type for ArmGicGetInterfaceIdentification
The CPU Interface Identification Register (GICC_IIDR) is a 32-bit register. Since ArmGicGetInterfaceIdentification () returns the value read from the GICC_IIDR register, update the return type for this function to UINT32. Signed-off-by: Sami Mujawar <sami.mujawar@arm.com>
This commit is contained in:
parent
ed132ef8ae
commit
937fbe4878
|
@ -111,7 +111,7 @@ GicGetCpuRedistributorBase (
|
|||
|
||||
@retval CPU Interface Identification information.
|
||||
**/
|
||||
UINTN
|
||||
UINT32
|
||||
EFIAPI
|
||||
ArmGicGetInterfaceIdentification (
|
||||
IN UINTN GicInterruptInterfaceBase
|
||||
|
|
|
@ -110,7 +110,7 @@
|
|||
// Bit Mask for
|
||||
#define ARM_GIC_ICCIAR_ACKINTID 0x3FF
|
||||
|
||||
UINTN
|
||||
UINT32
|
||||
EFIAPI
|
||||
ArmGicGetInterfaceIdentification (
|
||||
IN UINTN GicInterruptInterfaceBase
|
||||
|
|
Loading…
Reference in New Issue