diff options
author | Lisa Hsu <hsul@eecs.umich.edu> | 2004-03-22 13:15:14 -0500 |
---|---|---|
committer | Lisa Hsu <hsul@eecs.umich.edu> | 2004-03-22 13:15:14 -0500 |
commit | 3bc851b7dbe529dc1e45c9ab9082b941fad9465c (patch) | |
tree | 6fcd1a1bf274b19d456fca20512f0ad55575829e /dev/pcidev.hh | |
parent | b4ff8c555fe18093f8b213c7f7ce4080e72ab63b (diff) | |
download | gem5-3bc851b7dbe529dc1e45c9ab9082b941fad9465c.tar.xz |
forgot to check this in earlier - no confusion between types and member names!
dev/pcidev.cc:
member variables should begin with lowercase so they don't get confused with types.
dev/pcidev.hh:
member variables must begin with lowercase so they don't get confused with types.
--HG--
extra : convert_revision : f083baa60d0fbf64d858d684ff70ee06e7b7765d
Diffstat (limited to 'dev/pcidev.hh')
-rw-r--r-- | dev/pcidev.hh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dev/pcidev.hh b/dev/pcidev.hh index 6496791b2..1a45f5c7b 100644 --- a/dev/pcidev.hh +++ b/dev/pcidev.hh @@ -67,11 +67,11 @@ class PciDev : public FunctionalMemory { protected: MemoryController *MMU; - PciConfigAll *ConfigSpace; - PciConfigData *ConfigData; - uint32_t Bus; - uint32_t Device; - uint32_t Function; + PciConfigAll *configSpace; + PciConfigData *configData; + uint32_t bus; + uint32_t device; + uint32_t function; PCIConfig config; uint32_t BARSize[6]; |