io_device.cc (4451:bfb7c7c0b7ea) io_device.cc (4475:fb185cc1c845)
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

43
44Tick
45PioPort::recvAtomic(PacketPtr pkt)
46{
47 return pkt->isRead() ? device->read(pkt) : device->write(pkt);
48}
49
50void
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

43
44Tick
45PioPort::recvAtomic(PacketPtr pkt)
46{
47 return pkt->isRead() ? device->read(pkt) : device->write(pkt);
48}
49
50void
51PioPort::getDeviceAddressRanges(AddrRangeList &resp, AddrRangeList &snoop)
51PioPort::getDeviceAddressRanges(AddrRangeList &resp, bool &snoop)
52{
52{
53 snoop.clear();
53 snoop = false;
54 device->addressRanges(resp);
55}
56
57
58PioDevice::~PioDevice()
59{
60 if (pioPort)
61 delete pioPort;

--- 273 unchanged lines hidden ---
54 device->addressRanges(resp);
55}
56
57
58PioDevice::~PioDevice()
59{
60 if (pioPort)
61 delete pioPort;

--- 273 unchanged lines hidden ---