diff options
Diffstat (limited to 'src/dev/x86/i82094aa.cc')
-rw-r--r-- | src/dev/x86/i82094aa.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dev/x86/i82094aa.cc b/src/dev/x86/i82094aa.cc index 1d3defa12..f547d7c1b 100644 --- a/src/dev/x86/i82094aa.cc +++ b/src/dev/x86/i82094aa.cc @@ -39,7 +39,7 @@ #include "sim/system.hh" X86ISA::I82094AA::I82094AA(Params *p) - : BasicPioDevice(p), IntDev(this, p->int_latency), + : BasicPioDevice(p), IntDevice(this, p->int_latency), extIntPic(p->external_int_pic), lowestPriorityOffset(0) { // This assumes there's only one I/O APIC in the system and since the apic @@ -65,10 +65,10 @@ X86ISA::I82094AA::init() { // The io apic must register its address ranges on both its pio port // via the piodevice init() function and its int port that it inherited - // from IntDev. Note IntDev is not a SimObject itself. + // from IntDevice. Note IntDevice is not a SimObject itself. BasicPioDevice::init(); - IntDev::init(); + IntDevice::init(); } BaseMasterPort & |