summaryrefslogtreecommitdiff
path: root/src/dev/x86/i82094aa.cc
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2009-02-25 10:16:43 -0800
committerGabe Black <gblack@eecs.umich.edu>2009-02-25 10:16:43 -0800
commit82288e7c3eea0fc62746d746e325c888a13c0a22 (patch)
treee9cfc318aa62981e344a45158ad00865e7404b0f /src/dev/x86/i82094aa.cc
parent7462cb0842b9963d137cb578be6a0f7c619712d1 (diff)
downloadgem5-82288e7c3eea0fc62746d746e325c888a13c0a22.tar.xz
X86: Add makeAtomicResponse to the read/write functions of x86 devices.
Diffstat (limited to 'src/dev/x86/i82094aa.cc')
-rw-r--r--src/dev/x86/i82094aa.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dev/x86/i82094aa.cc b/src/dev/x86/i82094aa.cc
index 03944c190..d160fcb24 100644
--- a/src/dev/x86/i82094aa.cc
+++ b/src/dev/x86/i82094aa.cc
@@ -67,6 +67,7 @@ X86ISA::I82094AA::read(PacketPtr pkt)
default:
panic("Illegal read from I/O APIC.\n");
}
+ pkt->makeAtomicResponse();
return latency;
}
@@ -85,6 +86,7 @@ X86ISA::I82094AA::write(PacketPtr pkt)
default:
panic("Illegal write to I/O APIC.\n");
}
+ pkt->makeAtomicResponse();
return latency;
}