diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-21 16:00:20 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-21 16:00:20 +0000 |
commit | 5626b017d623cb88d973b53bca11613c766b1715 (patch) | |
tree | 65494b22b3a93843aef474283238d946701a3cd9 /hw/slavio_misc.c | |
parent | 7b16968757973a64da8034c449d7b5aaccd683a2 (diff) |
hw/slavio_misc.c remove address from debug trace (Robert Reif)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6119 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/slavio_misc.c')
-rw-r--r-- | hw/slavio_misc.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/hw/slavio_misc.c b/hw/slavio_misc.c index 55cb26ddd1..2c383ca6ef 100644 --- a/hw/slavio_misc.c +++ b/hw/slavio_misc.c @@ -324,8 +324,7 @@ static uint32_t slavio_sysctrl_mem_readl(void *opaque, target_phys_addr_t addr) default: break; } - MISC_DPRINTF("Read system control reg 0x" TARGET_FMT_plx " = %x\n", addr, - ret); + MISC_DPRINTF("Read system control %08x\n", ret); return ret; } @@ -334,8 +333,7 @@ static void slavio_sysctrl_mem_writel(void *opaque, target_phys_addr_t addr, { MiscState *s = opaque; - MISC_DPRINTF("Write system control reg 0x" TARGET_FMT_plx " = %x\n", addr, - val); + MISC_DPRINTF("Write system control %08x\n", val); switch (addr) { case 0: if (val & SYS_RESET) { @@ -372,8 +370,7 @@ static uint32_t slavio_led_mem_readw(void *opaque, target_phys_addr_t addr) default: break; } - MISC_DPRINTF("Read diagnostic LED reg 0x" TARGET_FMT_plx " = %x\n", addr, - ret); + MISC_DPRINTF("Read diagnostic LED %04x\n", ret); return ret; } @@ -382,8 +379,7 @@ static void slavio_led_mem_writew(void *opaque, target_phys_addr_t addr, { MiscState *s = opaque; - MISC_DPRINTF("Write diagnostic LED reg 0x" TARGET_FMT_plx " = %x\n", addr, - val); + MISC_DPRINTF("Write diagnostic LED %04x\n", val & 0xffff); switch (addr) { case 0: s->leds = val; |