summaryrefslogtreecommitdiff
path: root/src/dev/x86/south_bridge.cc
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2008-10-11 02:23:40 -0700
committerGabe Black <gblack@eecs.umich.edu>2008-10-11 02:23:40 -0700
commit3af428606ad35e2cd40d5d1d39010ff732bfee4f (patch)
tree138312e2a62bc278b9332713f5c053519cc5c6f5 /src/dev/x86/south_bridge.cc
parent826621eb1722eb557d4c24f79e110fbed09e5fb5 (diff)
downloadgem5-3af428606ad35e2cd40d5d1d39010ff732bfee4f.tar.xz
X86: Rename the PC device to Pc.
--HG-- rename : src/dev/x86/PC.py => src/dev/x86/Pc.py
Diffstat (limited to 'src/dev/x86/south_bridge.cc')
-rw-r--r--src/dev/x86/south_bridge.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dev/x86/south_bridge.cc b/src/dev/x86/south_bridge.cc
index 3f68fee18..d366de4ad 100644
--- a/src/dev/x86/south_bridge.cc
+++ b/src/dev/x86/south_bridge.cc
@@ -40,7 +40,7 @@ SouthBridge::SouthBridge(const Params *p) : SimObject(p),
cmos(p->cmos), speaker(p->speaker)
{
// Let the platform know where we are
- PC * pc = dynamic_cast<PC *>(platform);
+ Pc * pc = dynamic_cast<Pc *>(platform);
assert(pc);
pc->southBridge = this;
}