dev: sparc: Get rid of the TheISA namespace in the SPARC devices.
authorGabe Black <gabeblack@google.com>
Tue, 27 Mar 2018 09:19:34 +0000 (02:19 -0700)
committerGabe Black <gabeblack@google.com>
Tue, 27 Mar 2018 10:58:18 +0000 (10:58 +0000)
It's not used, and so doesn't need to be brought in with a "using"
statement.

Change-Id: Iff4f7c66dbf1ee18e2e1a7d3e73bbae8cc4bf8eb
Reviewed-on: https://gem5-review.googlesource.com/9406
Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Maintainer: Gabe Black <gabeblack@google.com>

src/dev/sparc/dtod.cc
src/dev/sparc/t1000.cc

index 3d47ff6606819ca5ee682b6755e5d6b172d221bf..b87d2813a78df4a312e0dcea9291291f5a2779e7 100644 (file)
 
 #include "base/time.hh"
 #include "base/trace.hh"
-#include "config/the_isa.hh"
 #include "dev/platform.hh"
 #include "mem/packet_access.hh"
 #include "mem/port.hh"
 #include "sim/system.hh"
 
 using namespace std;
-using namespace TheISA;
 
 DumbTOD::DumbTOD(const Params *p)
     : BasicPioDevice(p, 0x08)
index 0bc7ad87d99970bf1cb67cb0a6aafaed5329abf2..e3a1d7f89cca9e2b0388eec2ecc7a7f8888e7296 100644 (file)
 #include <string>
 #include <vector>
 
-#include "config/the_isa.hh"
 #include "cpu/intr_control.hh"
 #include "sim/system.hh"
 
 using namespace std;
-//Should this be AlphaISA?
-using namespace TheISA;
 
 T1000::T1000(const Params *p)
     : Platform(p), system(p->system)