summaryrefslogtreecommitdiff
path: root/src/dev/x86/pc.cc
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2009-02-01 00:27:15 -0800
committerGabe Black <gblack@eecs.umich.edu>2009-02-01 00:27:15 -0800
commit57be1dfe48a25db872627b61d4c64b560ccc640b (patch)
tree28cb35b0ce1dc38ddd7489ec76e9035beab44b93 /src/dev/x86/pc.cc
parent70cd5bfce5549495c6e969fa509bfd5f56190e10 (diff)
downloadgem5-57be1dfe48a25db872627b61d4c64b560ccc640b.tar.xz
X86: Implement pciToDma.
Diffstat (limited to 'src/dev/x86/pc.cc')
-rw-r--r--src/dev/x86/pc.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/dev/x86/pc.cc b/src/dev/x86/pc.cc
index d23474c67..d1ab4af7f 100644
--- a/src/dev/x86/pc.cc
+++ b/src/dev/x86/pc.cc
@@ -112,7 +112,7 @@ Pc::init()
Tick
Pc::intrFrequency()
{
- panic("Need implementation\n");
+ panic("Need implementation for intrFrequency\n");
M5_DUMMY_RETURN
}
@@ -145,8 +145,7 @@ Pc::clearPciInt(int line)
Addr
Pc::pciToDma(Addr pciAddr) const
{
- panic("Need implementation\n");
- M5_DUMMY_RETURN
+ return pciAddr;
}
Addr