summaryrefslogtreecommitdiff
path: root/src/dev/x86/i8042.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/i8042.cc
parent7462cb0842b9963d137cb578be6a0f7c619712d1 (diff)
downloadgem5-82288e7c3eea0fc62746d746e325c888a13c0a22.tar.xz
X86: Add makeAtomicResponse to the read/write functions of x86 devices.
Diffstat (limited to 'src/dev/x86/i8042.cc')
-rw-r--r--src/dev/x86/i8042.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dev/x86/i8042.cc b/src/dev/x86/i8042.cc
index 78ce307ae..afcbfdfb4 100644
--- a/src/dev/x86/i8042.cc
+++ b/src/dev/x86/i8042.cc
@@ -303,6 +303,7 @@ X86ISA::I8042::read(PacketPtr pkt)
} else {
panic("Read from unrecognized port %#x.\n", addr);
}
+ pkt->makeAtomicResponse();
return latency;
}
@@ -434,6 +435,7 @@ X86ISA::I8042::write(PacketPtr pkt)
} else {
panic("Write to unrecognized port %#x.\n", addr);
}
+ pkt->makeAtomicResponse();
return latency;
}