port.cc (9087:b5a084a6159b) port.cc (9089:da918cb3462e)
1/*
2 * Copyright (c) 2012 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 89 unchanged lines hidden (view full) ---

98}
99
100unsigned
101MasterPort::peerBlockSize() const
102{
103 return _slavePort->deviceBlockSize();
104}
105
1/*
2 * Copyright (c) 2012 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 89 unchanged lines hidden (view full) ---

98}
99
100unsigned
101MasterPort::peerBlockSize() const
102{
103 return _slavePort->deviceBlockSize();
104}
105
106AddrRangeList
107MasterPort::getAddrRanges() const
108{
109 return _slavePort->getAddrRanges();
110}
111
106Tick
107MasterPort::sendAtomic(PacketPtr pkt)
108{
109 assert(pkt->isRequest());
110 return _slavePort->recvAtomic(pkt);
111}
112
113void

--- 110 unchanged lines hidden ---
112Tick
113MasterPort::sendAtomic(PacketPtr pkt)
114{
115 assert(pkt->isRequest());
116 return _slavePort->recvAtomic(pkt);
117}
118
119void

--- 110 unchanged lines hidden ---