From: Peter Crosthwaite Date: Mon, 3 Jun 2013 16:17:45 +0000 (+0100) Subject: sd/sdhci.c: Fix bdata_read DPRINT message X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~524^2~3^2~552^2~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=677ff2ae660b3a55f936a8836513cbab185f6e4f;p=sdk%2Femulator%2Fqemu.git sd/sdhci.c: Fix bdata_read DPRINT message This message was printing out the data in decimal only, which is not very friendly to the debugging developer. Add hex variant in parenthesis to make it consistent with other similar messages in this module. Signed-off-by: Peter Crosthwaite Reviewed-by: Igor Mitsyanko Reviewed-by: Peter Maydell Message-id: d624179649137832eaa8caa263ef9589b4395d5e.1369370934.git.peter.crosthwaite@xilinx.com Signed-off-by: Peter Maydell --- diff --git a/hw/sd/sdhci.c b/hw/sd/sdhci.c index ea510b53d0..15345dc071 100644 --- a/hw/sd/sdhci.c +++ b/hw/sd/sdhci.c @@ -880,7 +880,8 @@ static uint32_t sdhci_read(SDHCIState *s, unsigned int offset, unsigned size) case SDHC_BDATA: if (sdhci_buff_access_is_sequential(s, offset - SDHC_BDATA)) { ret = SDHCI_GET_CLASS(s)->bdata_read(s, size); - DPRINT_L2("read %ub: addr[0x%04x] -> %u\n", size, offset, ret); + DPRINT_L2("read %ub: addr[0x%04x] -> %u(0x%x)\n", size, offset, + ret, ret); return ret; } break;