diff options
Diffstat (limited to 'src/dev/x86/i8042.cc')
-rw-r--r-- | src/dev/x86/i8042.cc | 2 |
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; } |