ruby: MI protocol: add a missing transition
[gem5.git] / src / mem / port_proxy.hh
index b2b27312e5e60837855628ffa77ce23079fb9832..4600cd40713e53b17383572f5f497a3f62810da7 100644 (file)
@@ -86,12 +86,12 @@ class PortProxy
   private:
 
     /** The actual physical port used by this proxy. */
-    Port &_port;
+    MasterPort &_port;
 
     void blobHelper(Addr addr, uint8_t *p, int size, MemCmd cmd) const;
 
   public:
-    PortProxy(Port &port) : _port(port) { }
+    PortProxy(MasterPort &port) : _port(port) { }
     virtual ~PortProxy() { }
 
     /**