diff options
-rw-r--r-- | src/arch/arm/utility.cc | 4 | ||||
-rw-r--r-- | src/arch/arm/utility.hh | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/arch/arm/utility.cc b/src/arch/arm/utility.cc index 58eb032c4..175fd7c00 100644 --- a/src/arch/arm/utility.cc +++ b/src/arch/arm/utility.cc @@ -205,7 +205,7 @@ longDescFormatInUse(ThreadContext *tc) return ArmSystem::haveLPAE(tc) && ttbcr.eae; } -MiscReg +RegVal readMPIDR(ArmSystem *arm_sys, ThreadContext *tc) { CPSR cpsr = tc->readMiscReg(MISCREG_CPSR); @@ -235,7 +235,7 @@ readMPIDR(ArmSystem *arm_sys, ThreadContext *tc) } } -MiscReg +RegVal getMPIDR(ArmSystem *arm_sys, ThreadContext *tc) { // Multiprocessor Affinity Register MPIDR from Cortex(tm)-A15 Technical diff --git a/src/arch/arm/utility.hh b/src/arch/arm/utility.hh index 01b95b3b5..d802b944a 100644 --- a/src/arch/arm/utility.hh +++ b/src/arch/arm/utility.hh @@ -253,10 +253,10 @@ bool longDescFormatInUse(ThreadContext *tc); /** This helper function is either returing the value of * MPIDR_EL1 (by calling getMPIDR), or it is issuing a read * to VMPIDR_EL2 (as it happens in virtualized systems) */ -MiscReg readMPIDR(ArmSystem *arm_sys, ThreadContext *tc); +RegVal readMPIDR(ArmSystem *arm_sys, ThreadContext *tc); /** This helper function is returing the value of MPIDR_EL1 */ -MiscReg getMPIDR(ArmSystem *arm_sys, ThreadContext *tc); +RegVal getMPIDR(ArmSystem *arm_sys, ThreadContext *tc); static inline uint32_t mcrMrcIssBuild(bool isRead, uint32_t crm, IntRegIndex rt, uint32_t crn, |