From 679ed0eec5e563a889b981231864e272c8e22c00 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Fri, 6 Sep 2019 15:14:00 -0700 Subject: 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 Maintainer: Gabe Black Tested-by: kokoro --- src/dev/x86/i8254.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/dev/x86/i8254.hh') diff --git a/src/dev/x86/i8254.hh b/src/dev/x86/i8254.hh index 70a18b47c..084da8ed7 100644 --- a/src/dev/x86/i8254.hh +++ b/src/dev/x86/i8254.hh @@ -63,7 +63,7 @@ class I8254 : public BasicPioDevice X86Intel8254Timer pit; - std::vector<::IntSourcePin *> intPin; + std::vector *> intPin; void counterInterrupt(unsigned int num); @@ -89,7 +89,7 @@ class I8254 : public BasicPioDevice pit(p->name, this) { for (int i = 0; i < p->port_int_pin_connection_count; i++) { - intPin.push_back(new ::IntSourcePin(csprintf( + intPin.push_back(new IntSourcePin(csprintf( "%s.int_pin[%d]", name(), i), i, this)); } } -- cgit v1.2.3