From: Gerd Hoffmann Date: Wed, 24 Oct 2012 07:36:55 +0000 (+0200) Subject: xhci: fix function name in error message X-Git-Tag: v1.3.0-rc0~142^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=79a8af3509151dd1b650c996defdda13e02a7e38;p=thirdparty%2Fqemu.git xhci: fix function name in error message Signed-off-by: Gerd Hoffmann --- diff --git a/hw/usb/hcd-xhci.c b/hw/usb/hcd-xhci.c index caa5f3e36a1..8345fa34a24 100644 --- a/hw/usb/hcd-xhci.c +++ b/hw/usb/hcd-xhci.c @@ -2676,7 +2676,7 @@ static void xhci_runtime_write(void *ptr, hwaddr reg, trace_usb_xhci_runtime_write(reg, val); if (reg < 0x20) { - fprintf(stderr, "xhci_oper_write: reg 0x%x unimplemented\n", (int)reg); + fprintf(stderr, "%s: reg 0x%x unimplemented\n", __func__, (int)reg); return; }