summaryrefslogtreecommitdiff
path: root/src/arch/arm/linux
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/arm/linux')
-rw-r--r--src/arch/arm/linux/system.cc4
-rw-r--r--src/arch/arm/linux/system.hh2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/arch/arm/linux/system.cc b/src/arch/arm/linux/system.cc
index e9586f199..216e9ddc0 100644
--- a/src/arch/arm/linux/system.cc
+++ b/src/arch/arm/linux/system.cc
@@ -61,7 +61,7 @@ using namespace ArmISA;
using namespace Linux;
LinuxArmSystem::LinuxArmSystem(Params *p)
- : ArmSystem(p), dumpStatsPCEvent(nullptr),
+ : GenericArmSystem(p), dumpStatsPCEvent(nullptr),
enableContextSwitchStatsDump(p->enable_context_switch_stats_dump),
taskFile(nullptr), kernelPanicEvent(nullptr), kernelOopsEvent(nullptr),
bootReleaseAddr(p->boot_release_addr)
@@ -133,7 +133,7 @@ LinuxArmSystem::initState()
// address map being resolved in the interconnect
// Call the initialisation of the super class
- ArmSystem::initState();
+ GenericArmSystem::initState();
// Load symbols at physical address, we might not want
// to do this permanently, for but early bootup work
diff --git a/src/arch/arm/linux/system.hh b/src/arch/arm/linux/system.hh
index 4ce6ac49e..32e3568b3 100644
--- a/src/arch/arm/linux/system.hh
+++ b/src/arch/arm/linux/system.hh
@@ -56,7 +56,7 @@
class DumpStatsPCEvent;
-class LinuxArmSystem : public ArmSystem
+class LinuxArmSystem : public GenericArmSystem
{
protected:
DumpStatsPCEvent *dumpStatsPCEvent;