mem-cache: Add multiple eviction stats
[gem5.git] / src / arch / arm / vtophys.hh
index 12b4846edbcb873b5eb50b020d949b1047a0b857..56181d31804f1c6ac507dc94cff465bbfe2d3325 100644 (file)
@@ -37,9 +37,7 @@
 #include "arch/arm/isa_traits.hh"
 #include "arch/arm/utility.hh"
 
-
 class ThreadContext;
-class FunctionalPort;
 
 namespace ArmISA {
     inline Addr PteAddr(Addr a) { return (a & PteMask) << PteShift; }
@@ -47,7 +45,7 @@ namespace ArmISA {
     Addr vtophys(Addr vaddr);
     Addr vtophys(ThreadContext *tc, Addr vaddr);
     bool virtvalid(ThreadContext *tc, Addr vaddr);
-};
+}
 
 #endif // __ARCH_ARM_VTOPHYS_H__