From: Blue Swirl <blauwirbel@gmail.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [6119] hw/slavio_misc.c remove address from debug trace (Robert Reif)
Date: Sun, 21 Dec 2008 16:00:21 +0000 [thread overview]
Message-ID: <E1LEQj7-0003v6-Rd@cvs.savannah.gnu.org> (raw)
Revision: 6119
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6119
Author: blueswir1
Date: 2008-12-21 16:00:20 +0000 (Sun, 21 Dec 2008)
Log Message:
-----------
hw/slavio_misc.c remove address from debug trace (Robert Reif)
Modified Paths:
--------------
trunk/hw/slavio_misc.c
Modified: trunk/hw/slavio_misc.c
===================================================================
--- trunk/hw/slavio_misc.c 2008-12-21 10:46:23 UTC (rev 6118)
+++ trunk/hw/slavio_misc.c 2008-12-21 16:00:20 UTC (rev 6119)
@@ -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;
reply other threads:[~2008-12-21 16:00 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=E1LEQj7-0003v6-Rd@cvs.savannah.gnu.org \
--to=blauwirbel@gmail.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.