summaryrefslogtreecommitdiff
path: root/src/dev/x86/intdev.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/dev/x86/intdev.hh')
-rw-r--r--src/dev/x86/intdev.hh25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/dev/x86/intdev.hh b/src/dev/x86/intdev.hh
index 348ec57b8..274873370 100644
--- a/src/dev/x86/intdev.hh
+++ b/src/dev/x86/intdev.hh
@@ -48,7 +48,6 @@
#include <string>
#include "arch/x86/intmessage.hh"
-#include "arch/x86/x86_traits.hh"
#include "mem/tport.hh"
#include "sim/sim_object.hh"
@@ -131,30 +130,6 @@ class IntMasterPort : public QueuedMasterPort
}
};
-class IntDevice
-{
- protected:
-
- IntMasterPort<IntDevice> intMasterPort;
-
- public:
- IntDevice(SimObject * parent, Tick latency = 0) :
- intMasterPort(parent->name() + ".int_master", parent, this, latency)
- {
- }
-
- virtual ~IntDevice()
- {}
-
- virtual void init();
-
- virtual bool
- recvResponse(PacketPtr pkt)
- {
- panic("recvResponse not implemented.\n");
- }
-};
-
} // namespace X86ISA
#endif //__DEV_X86_INTDEV_HH__