summaryrefslogtreecommitdiff
path: root/src/dev/io_device.hh
diff options
context:
space:
mode:
authorGene Wu <Gene.Wu@arm.com>2010-08-23 11:18:41 -0500
committerGene Wu <Gene.Wu@arm.com>2010-08-23 11:18:41 -0500
commit4b9de4243943086294d7a2d7ab81a134d4fe5a49 (patch)
tree36f67c7f22967f8ee3ac97885920b741841e17d2 /src/dev/io_device.hh
parentaa601750f8161fcd60b1083067d5bcd5e48a7ccc (diff)
downloadgem5-4b9de4243943086294d7a2d7ab81a134d4fe5a49.tar.xz
Devices: Allow a device to specify that a request is uncachable.
Diffstat (limited to 'src/dev/io_device.hh')
-rw-r--r--src/dev/io_device.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dev/io_device.hh b/src/dev/io_device.hh
index 9ed287589..bc6f1d4f7 100644
--- a/src/dev/io_device.hh
+++ b/src/dev/io_device.hh
@@ -155,7 +155,7 @@ class DmaPort : public Port
DmaPort(MemObject *dev, System *s, Tick min_backoff, Tick max_backoff);
void dmaAction(Packet::Command cmd, Addr addr, int size, Event *event,
- uint8_t *data, Tick delay);
+ uint8_t *data, Tick delay, Request::Flags flag = 0);
bool dmaPending() { return pendingCount > 0; }