[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH] hw/slavio_misc.c remove address from debug trace
From: |
Robert Reif |
Subject: |
[Qemu-devel] [PATCH] hw/slavio_misc.c remove address from debug trace |
Date: |
Sun, 21 Dec 2008 10:32:39 -0500 |
User-agent: |
Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.18) Gecko/20081030 SeaMonkey/1.1.13 |
--- hw/slavio_misc.c (revision 6118)
+++ hw/slavio_misc.c (working copy)
@@ -324,8 +324,7 @@
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 @@
{
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 @@
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 @@
{
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;
- [Qemu-devel] [PATCH] hw/slavio_misc.c remove address from debug trace,
Robert Reif <=