On Thu, Dec 14, 2017 at 7:15 PM, Philippe Mathieu-Daudé <f4...@amsat.org> wrote: > Signed-off-by: Philippe Mathieu-Daudé <f4...@amsat.org>
Reviewed-by: Alistair Francis <alistair.fran...@xilinx.com> Alistair > --- > hw/sd/sdhci.c | 7 ++++--- > 1 file changed, 4 insertions(+), 3 deletions(-) > > diff --git a/hw/sd/sdhci.c b/hw/sd/sdhci.c > index 53c1f11855..ca71a70148 100644 > --- a/hw/sd/sdhci.c > +++ b/hw/sd/sdhci.c > @@ -945,7 +945,8 @@ static uint64_t sdhci_read(void *opaque, hwaddr offset, > unsigned size) > ret = (SD_HOST_SPECv2_VERS << 16) | sdhci_slotint(s); > break; > default: > - ERRPRINT("bad %ub read: addr[0x%04x]\n", size, (int)offset); > + qemu_log_mask(LOG_UNIMP, "SDHC rd_%ub @0x%02" HWADDR_PRIx " " > + "not implemented\n", size, offset); > break; > } > > @@ -1149,8 +1150,8 @@ sdhci_write(void *opaque, hwaddr offset, uint64_t val, > unsigned size) > sdhci_update_irq(s); > break; > default: > - ERRPRINT("bad %ub write offset: addr[0x%04x] <- %u(0x%x)\n", > - size, (int)offset, value >> shift, value >> shift); > + qemu_log_mask(LOG_UNIMP, "SDHC wr_%ub @0x%02" HWADDR_PRIx " <- > 0x%08x " > + "not implemented\n", size, offset, value >> shift); > break; > } > DPRINT_L2("write %ub: addr[0x%04x] <- %u(0x%x)\n", > -- > 2.15.1 > >