summaryrefslogtreecommitdiff
path: root/src/mem/port.hh
diff options
context:
space:
mode:
authorAndreas Hansson <andreas.hansson@arm.com>2012-01-17 12:55:09 -0600
committerAndreas Hansson <andreas.hansson@arm.com>2012-01-17 12:55:09 -0600
commit6315e5bbb5efd6972cf1c7cd8007563646d88d33 (patch)
tree9ad4a54f924207c88c8699ff31e8f9c924838bab /src/mem/port.hh
parentde34e49d15b95cc8be51dbed2e98c469e7486959 (diff)
downloadgem5-6315e5bbb5efd6972cf1c7cd8007563646d88d33.tar.xz
MEM: Remove the notion of the default port
This patch removes the default port and instead relies on the peer being set to NULL initially. The binding check (i.e. is a port connected or not) will eventually be moved to the init function of the modules.
Diffstat (limited to 'src/mem/port.hh')
-rw-r--r--src/mem/port.hh4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mem/port.hh b/src/mem/port.hh
index 32f331433..4adf8f4cd 100644
--- a/src/mem/port.hh
+++ b/src/mem/port.hh
@@ -127,9 +127,7 @@ class Port
* demise. */
void removeConn();
- virtual bool isDefaultPort() const { return false; }
-
- bool isConnected() { return peer && !peer->isDefaultPort(); }
+ bool isConnected() { return peer != NULL; }
protected: