summaryrefslogtreecommitdiff
path: root/src/arch/generic/tlb.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/generic/tlb.hh')
-rw-r--r--src/arch/generic/tlb.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/arch/generic/tlb.hh b/src/arch/generic/tlb.hh
index 91f8f867b..7865d8abe 100644
--- a/src/arch/generic/tlb.hh
+++ b/src/arch/generic/tlb.hh
@@ -58,6 +58,7 @@ class BaseTLB : public MemObject
{}
public:
+
enum Mode { Read, Write, Execute };
class Translation
@@ -138,7 +139,7 @@ class BaseTLB : public MemObject
*
* @return A pointer to the walker master port or NULL if not present
*/
- virtual BaseMasterPort* getMasterPort() { return NULL; }
+ virtual BaseMasterPort* getTableWalkerMasterPort() { return NULL; }
void memInvalidate() { flushAll(); }
};