diff options
author | Steve Reinhardt <stever@gmail.com> | 2013-07-11 21:56:39 -0500 |
---|---|---|
committer | Steve Reinhardt <stever@gmail.com> | 2013-07-11 21:56:39 -0500 |
commit | 2737650a69f0c56d325c2d9cfd45eef099fbd581 (patch) | |
tree | 7e1a7030cdfb961d074729397b6f2c1e24f41e43 /src/dev/arm/amba_fake.cc | |
parent | b0b1c0205c438d382aaec54ee4b79b92e1a5e285 (diff) | |
download | gem5-2737650a69f0c56d325c2d9cfd45eef099fbd581.tar.xz |
dev/arm: get rid of AmbaDev namespace
It was confusing having an AmbaDev namespace along with an
AmbaDevice class. The namespace stuff is now moved in to
a new base AmbaDevice class, which is a mixin for classes
AmbaPioDevice (the former AmbaDevice) and AmbaDmaDevice
to provide the readId function as an inherited member function.
Committed by: Nilay Vaish <nilay@cs.wisc.edu>
Diffstat (limited to 'src/dev/arm/amba_fake.cc')
-rw-r--r-- | src/dev/arm/amba_fake.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/dev/arm/amba_fake.cc b/src/dev/arm/amba_fake.cc index cc1f51761..654bd3112 100644 --- a/src/dev/arm/amba_fake.cc +++ b/src/dev/arm/amba_fake.cc @@ -46,10 +46,8 @@ #include "mem/packet.hh" #include "mem/packet_access.hh" -using namespace AmbaDev; - AmbaFake::AmbaFake(const Params *p) - : AmbaDevice(p) + : AmbaPioDevice(p) { pioSize = 0xfff; } |