aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlistair Francis <alistair.francis@xilinx.com>2018-02-03 09:43:11 +0100
committerMarkus Armbruster <armbru@redhat.com>2018-02-06 18:29:26 +0100
commit4e82512586952f1275b7262f7c4033a3bfead7ab (patch)
treeee44a1a61c3306e6bbbcb33fb22dcc91f0378c5b
parent6f76b817b51806f7a41e963e637804e73b30b46a (diff)
downloadqemu-4e82512586952f1275b7262f7c4033a3bfead7ab.zip
qemu-4e82512586952f1275b7262f7c4033a3bfead7ab.tar.gz
qemu-4e82512586952f1275b7262f7c4033a3bfead7ab.tar.bz2
hw/sd: Replace fprintf(stderr, "*\n" with DPRINTF()
Signed-off-by: Alistair Francis <alistair.francis@xilinx.com> [Most of original patch dropped, commit message replaced to match what's left] Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20180203084315.20497-11-armbru@redhat.com> Reviewed-by: Thomas Huth <thuth@redhat.com>
-rw-r--r--hw/sd/sd.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/hw/sd/sd.c b/hw/sd/sd.c
index 35347a5..73e405a 100644
--- a/hw/sd/sd.c
+++ b/hw/sd/sd.c
@@ -1564,9 +1564,10 @@ send_response:
if (rsplen) {
int i;
DPRINTF("Response:");
- for (i = 0; i < rsplen; i++)
- fprintf(stderr, " %02x", response[i]);
- fprintf(stderr, " state %d\n", sd->state);
+ for (i = 0; i < rsplen; i++) {
+ DPRINTF(" %02x", response[i]);
+ }
+ DPRINTF(" state %d\n", sd->state);
} else {
DPRINTF("No response %d\n", sd->state);
}