summaryrefslogtreecommitdiff
path: root/dev/pcidev.cc
diff options
context:
space:
mode:
authorLisa Hsu <hsul@eecs.umich.edu>2004-03-11 12:45:27 -0500
committerLisa Hsu <hsul@eecs.umich.edu>2004-03-11 12:45:27 -0500
commitc6c61870fac8975630e66232dd4e7343e1e8df05 (patch)
treeda57d0f3f40eb53ddfcb9887b28f4ac5c29380cd /dev/pcidev.cc
parentc82113d02296c40e1a2eac84ba55ae7ffbcf4419 (diff)
downloadgem5-c6c61870fac8975630e66232dd4e7343e1e8df05.tar.xz
It was annoying me that there was PCIConfigAll and PciDev and PciConfigData. so for consistency I changed it.
dev/pciconfigall.cc: dev/pciconfigall.hh: dev/pcidev.cc: dev/pcidev.hh: dev/tsunami.hh: change PCIConfigAll to PciConfigAll --HG-- extra : convert_revision : d2fa3f59b906c870fd9d46cfa94728c7587e3652
Diffstat (limited to 'dev/pcidev.cc')
-rw-r--r--dev/pcidev.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/pcidev.cc b/dev/pcidev.cc
index 1706bdd5a..0e0b7f840 100644
--- a/dev/pcidev.cc
+++ b/dev/pcidev.cc
@@ -51,7 +51,7 @@
using namespace std;
-PciDev::PciDev(const string &name, MemoryController *mmu, PCIConfigAll *cf,
+PciDev::PciDev(const string &name, MemoryController *mmu, PciConfigAll *cf,
PciConfigData *cd, uint32_t bus, uint32_t dev, uint32_t func)
: FunctionalMemory(name), MMU(mmu), ConfigSpace(cf), ConfigData(cd),
Bus(bus), Device(dev), Function(func)