summaryrefslogtreecommitdiff
path: root/src/dev/x86/i8042.hh
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2019-09-06 15:14:00 -0700
committerGabe Black <gabeblack@google.com>2019-09-20 17:55:13 +0000
commit679ed0eec5e563a889b981231864e272c8e22c00 (patch)
treef591d3bc87e0e2daf2ad42d14495224d86b338bc /src/dev/x86/i8042.hh
parentab376064bdfa9796eebad5ee8d84c766e7a30bd6 (diff)
downloadgem5-679ed0eec5e563a889b981231864e272c8e22c00.tar.xz
dev, x86: Delete the now unused X86 specific interrupt pins/lines.
Change-Id: I3915f0ad673119b551dcc4c5cedec180a9b88735 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/20702 Reviewed-by: Gabe Black <gabeblack@google.com> Maintainer: Gabe Black <gabeblack@google.com> Tested-by: kokoro <noreply+kokoro@google.com>
Diffstat (limited to 'src/dev/x86/i8042.hh')
-rw-r--r--src/dev/x86/i8042.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dev/x86/i8042.hh b/src/dev/x86/i8042.hh
index 5f62395dd..7faa760b6 100644
--- a/src/dev/x86/i8042.hh
+++ b/src/dev/x86/i8042.hh
@@ -108,8 +108,8 @@ class I8042 : public BasicPioDevice
static const uint16_t NoCommand = (uint16_t)(-1);
uint16_t lastCommand;
- std::vector<::IntSourcePin<I8042> *> mouseIntPin;
- std::vector<::IntSourcePin<I8042> *> keyboardIntPin;
+ std::vector<IntSourcePin<I8042> *> mouseIntPin;
+ std::vector<IntSourcePin<I8042> *> keyboardIntPin;
PS2Device *mouse;
PS2Device *keyboard;