diff options
author | Lisa Hsu <hsul@eecs.umich.edu> | 2004-03-11 12:45:27 -0500 |
---|---|---|
committer | Lisa Hsu <hsul@eecs.umich.edu> | 2004-03-11 12:45:27 -0500 |
commit | c6c61870fac8975630e66232dd4e7343e1e8df05 (patch) | |
tree | da57d0f3f40eb53ddfcb9887b28f4ac5c29380cd /dev/pcidev.hh | |
parent | c82113d02296c40e1a2eac84ba55ae7ffbcf4419 (diff) | |
download | gem5-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.hh')
-rw-r--r-- | dev/pcidev.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/pcidev.hh b/dev/pcidev.hh index dcd3d1b8a..6496791b2 100644 --- a/dev/pcidev.hh +++ b/dev/pcidev.hh @@ -37,7 +37,7 @@ #include "sim/sim_object.hh" #include "mem/functional_mem/functional_memory.hh" -class PCIConfigAll; +class PciConfigAll; class MemoryController; class PciConfigData : public SimObject @@ -67,7 +67,7 @@ class PciDev : public FunctionalMemory { protected: MemoryController *MMU; - PCIConfigAll *ConfigSpace; + PciConfigAll *ConfigSpace; PciConfigData *ConfigData; uint32_t Bus; uint32_t Device; @@ -78,7 +78,7 @@ class PciDev : public FunctionalMemory Addr BARAddrs[6]; public: - PciDev(const std::string &name, MemoryController *mmu, PCIConfigAll *cf, + PciDev(const std::string &name, MemoryController *mmu, PciConfigAll *cf, PciConfigData *cd, uint32_t bus, uint32_t dev, uint32_t func); virtual Fault read(MemReqPtr &req, uint8_t *data) { |