summaryrefslogtreecommitdiff
path: root/dev/pciconfigall.cc
diff options
context:
space:
mode:
authorAndrew Schultz <alschult@umich.edu>2004-06-04 15:13:04 -0400
committerAndrew Schultz <alschult@umich.edu>2004-06-04 15:13:04 -0400
commit0379a27896bf43bfbc2e6f7f6921f22bd41a3209 (patch)
tree1ecf71e5c4b6dd531c094daa9c372de92ac3f5a2 /dev/pciconfigall.cc
parentdf45c7b404edf00ec76da655dd5b7c77ea21fc62 (diff)
parentd270ea851a92e98d3efe30774f31f935d846dcd3 (diff)
downloadgem5-0379a27896bf43bfbc2e6f7f6921f22bd41a3209.tar.xz
Merge zizzer:/bk/linux
into zower.eecs.umich.edu:/z/alschult/DiskModel/linux --HG-- extra : convert_revision : b23a1d1a79ac5c593150d269d0523c474cf6a4a0
Diffstat (limited to 'dev/pciconfigall.cc')
-rw-r--r--dev/pciconfigall.cc12
1 files changed, 10 insertions, 2 deletions
diff --git a/dev/pciconfigall.cc b/dev/pciconfigall.cc
index 949124c8c..65bee19ad 100644
--- a/dev/pciconfigall.cc
+++ b/dev/pciconfigall.cc
@@ -148,13 +148,21 @@ PciConfigAll::write(MemReqPtr &req, const uint8_t *data)
void
PciConfigAll::serialize(std::ostream &os)
{
- // code should be written
+ /*
+ * There is no state associated with this object that requires
+ * serialization. The only real state are the device pointers
+ * which are all setup by the constructor of the PciDev class
+ */
}
void
PciConfigAll::unserialize(Checkpoint *cp, const std::string &section)
{
- //code should be written
+ /*
+ * There is no state associated with this object that requires
+ * serialization. The only real state are the device pointers
+ * which are all setup by the constructor of the PciDev class
+ */
}
#ifndef DOXYGEN_SHOULD_SKIP_THIS