summaryrefslogtreecommitdiff
path: root/src/dev/x86/south_bridge.cc
diff options
context:
space:
mode:
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;
}