From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:42475) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T9WH6-0004mY-Jl for qemu-devel@nongnu.org; Thu, 06 Sep 2012 03:13:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T9WGs-0006Q9-Qf for qemu-devel@nongnu.org; Thu, 06 Sep 2012 03:13:16 -0400 Received: from mx1.redhat.com ([209.132.183.28]:25275) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T9WGs-0006Pa-IM for qemu-devel@nongnu.org; Thu, 06 Sep 2012 03:13:02 -0400 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q867D2b4015304 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 6 Sep 2012 03:13:02 -0400 From: Gerd Hoffmann Date: Thu, 6 Sep 2012 09:12:39 +0200 Message-Id: <1346915575-12369-39-git-send-email-kraxel@redhat.com> In-Reply-To: <1346915575-12369-1-git-send-email-kraxel@redhat.com> References: <1346915575-12369-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 38/54] xhci: fix runtime write tracepoint List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Signed-off-by: Gerd Hoffmann --- hw/usb/hcd-xhci.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/usb/hcd-xhci.c b/hw/usb/hcd-xhci.c index 5cdaf76..e8d2372 100644 --- a/hw/usb/hcd-xhci.c +++ b/hw/usb/hcd-xhci.c @@ -2520,7 +2520,7 @@ static uint32_t xhci_runtime_read(XHCIState *xhci, uint32_t reg) static void xhci_runtime_write(XHCIState *xhci, uint32_t reg, uint32_t val) { - trace_usb_xhci_runtime_read(reg, val); + trace_usb_xhci_runtime_write(reg, val); switch (reg) { case 0x20: /* IMAN */ -- 1.7.1