diff options
author | Andrew Schultz <alschult@umich.edu> | 2004-02-13 18:15:04 -0500 |
---|---|---|
committer | Andrew Schultz <alschult@umich.edu> | 2004-02-13 18:15:04 -0500 |
commit | 092ec1978d3e1f01e9d1d6ce6f892c101f525682 (patch) | |
tree | 49e9027e35fc82dba7afb6731b4b5667d3ae826d /dev | |
parent | 6391bfac543921e49469d74ea58de644d7a8f7cc (diff) | |
download | gem5-092ec1978d3e1f01e9d1d6ce6f892c101f525682.tar.xz |
Fix to remote debugger while in PAL
arch/alpha/vtophys.cc:
base/remote_gdb.cc:
Fix to remote debugger while in PAL code
dev/pcidev.cc:
Remove extra debug printf
--HG--
extra : convert_revision : e64988846ad05cd3ddf47034d72d99dae3501591
Diffstat (limited to 'dev')
-rw-r--r-- | dev/pcidev.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/dev/pcidev.cc b/dev/pcidev.cc index c0358cd5a..556634115 100644 --- a/dev/pcidev.cc +++ b/dev/pcidev.cc @@ -91,7 +91,6 @@ PciDev::ReadConfig(int offset, int size, uint8_t *data) case sizeof(uint8_t): memcpy((uint8_t*)data, config.data + offset, sizeof(uint8_t)); - printf("data: %#x\n", *(uint8_t*)(config.data + offset)); DPRINTF(PCIDEV, "read device: %#x function: %#x register: %#x data: %#x\n", Device, Function, offset, *(uint8_t*)(config.data + offset)); |