aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>2018-06-21 14:12:48 -0300
committerStefan Hajnoczi <stefanha@redhat.com>2018-06-29 15:04:18 +0100
commitdcfebcf9a3f350034d5acff6fe6019ce3586438a (patch)
treef81a5041a8e5ee4d83c6a12de22e99d8b2722ec6 /hw
parent82c4f87e0ed1701c1f51a46a3146643ed89b0bef (diff)
downloadqemu-dcfebcf9a3f350034d5acff6fe6019ce3586438a.zip
qemu-dcfebcf9a3f350034d5acff6fe6019ce3586438a.tar.gz
qemu-dcfebcf9a3f350034d5acff6fe6019ce3586438a.tar.bz2
sdcard: Reduce sdcard_set_blocklen() trace digits
Per the Physical Layer Simplified Spec. "5.3 CSD Register": "The maximum block length might therefore be in the range 512...2048 bytes" Therefore 3 hexdigits are enough to report the block length. Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/sd/trace-events2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/sd/trace-events b/hw/sd/trace-events
index bfd1d62..d7880bc 100644
--- a/hw/sd/trace-events
+++ b/hw/sd/trace-events
@@ -37,7 +37,7 @@ sdcard_powerup(void) ""
sdcard_inquiry_cmd41(void) ""
sdcard_set_enable(bool current_state, bool new_state) "%u -> %u"
sdcard_reset(void) ""
-sdcard_set_blocklen(uint16_t length) "0x%04x"
+sdcard_set_blocklen(uint16_t length) "0x%03x"
sdcard_inserted(bool readonly) "read_only: %u"
sdcard_ejected(void) ""
sdcard_erase(void) ""