diff options
Diffstat (limited to 'src/mem/fs_translating_port_proxy.hh')
-rw-r--r-- | src/mem/fs_translating_port_proxy.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mem/fs_translating_port_proxy.hh b/src/mem/fs_translating_port_proxy.hh index 5ae87001c..78adf1ac5 100644 --- a/src/mem/fs_translating_port_proxy.hh +++ b/src/mem/fs_translating_port_proxy.hh @@ -85,11 +85,11 @@ class FSTranslatingPortProxy : public PortProxy /** Version of tryReadblob that translates virt->phys and deals * with page boundries. */ - bool tryReadBlob(Addr addr, uint8_t *p, int size) const override; + bool tryReadBlob(Addr addr, void *p, int size) const override; /** Version of tryWriteBlob that translates virt->phys and deals * with page boundries. */ - bool tryWriteBlob(Addr addr, const uint8_t *p, int size) const override; + bool tryWriteBlob(Addr addr, const void *p, int size) const override; /** * Fill size bytes starting at addr with byte value val. |