From 502ad1e6757116867e0e0529c0c080320a2b440b Mon Sep 17 00:00:00 2001 From: Steve Reinhardt Date: Thu, 11 Jul 2013 21:56:50 -0500 Subject: dev: consistently end device classes in 'Device' PciDev and IntDev stuck out as the only device classes that ended in 'Dev' rather than 'Device'. This patch takes care of that inconsistency. Note that you may need to delete pre-existing files matching build/*/python/m5/internal/param_* as scons does not pick up indirect dependencies on imported python modules when generating params, and the PciDev -> PciDevice rename takes place in a file (dev/Device.py) that gets imported quite a bit. Committed by: Nilay Vaish --- src/dev/x86/intdev.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/dev/x86/intdev.cc') diff --git a/src/dev/x86/intdev.cc b/src/dev/x86/intdev.cc index 3f8e49ce1..883073302 100644 --- a/src/dev/x86/intdev.cc +++ b/src/dev/x86/intdev.cc @@ -43,7 +43,7 @@ #include "dev/x86/intdev.hh" void -X86ISA::IntDev::IntMasterPort::sendMessage(ApicList apics, +X86ISA::IntDevice::IntMasterPort::sendMessage(ApicList apics, TriggerIntMessage message, bool timing) { @@ -66,7 +66,7 @@ X86ISA::IntDev::IntMasterPort::sendMessage(ApicList apics, } void -X86ISA::IntDev::init() +X86ISA::IntDevice::init() { if (!intMasterPort.isConnected()) { panic("Int port not connected to anything!"); -- cgit v1.2.3