From patchwork Mon Feb 4 10:40:48 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Tokarev X-Patchwork-Id: 218036 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 2961B2C02AB for ; Tue, 5 Feb 2013 05:54:43 +1100 (EST) Received: from localhost ([::1]:47346 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U2Jbv-0005Dp-Dm for incoming@patchwork.ozlabs.org; Mon, 04 Feb 2013 05:49:15 -0500 Received: from eggs.gnu.org ([208.118.235.92]:52378) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U2JbT-0004gO-Nn for qemu-devel@nongnu.org; Mon, 04 Feb 2013 05:48:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U2JbR-0002vi-1B for qemu-devel@nongnu.org; Mon, 04 Feb 2013 05:48:47 -0500 Received: from isrv.corpit.ru ([86.62.121.231]:42736) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U2JbQ-0002vG-R4; Mon, 04 Feb 2013 05:48:44 -0500 Received: from gandalf.tls.msk.ru (mjt.vpn.tls.msk.ru [192.168.177.99]) by isrv.corpit.ru (Postfix) with ESMTP id 11CADA03F9; Mon, 4 Feb 2013 14:48:44 +0400 (MSK) Received: by gandalf.tls.msk.ru (Postfix, from userid 1000) id BB9B053A; Mon, 4 Feb 2013 14:41:28 +0400 (MSK) From: Michael Tokarev To: qemu-devel@nongnu.org Date: Mon, 4 Feb 2013 14:40:48 +0400 Message-Id: <1359974470-17044-39-git-send-email-mjt@msgid.tls.msk.ru> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1359974470-17044-1-git-send-email-mjt@msgid.tls.msk.ru> References: <1359974470-17044-1-git-send-email-mjt@msgid.tls.msk.ru> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 86.62.121.231 Cc: qemu-stable@nongnu.org, Gerd Hoffmann Subject: [Qemu-devel] [PATCH 38/60] xhci: fix usb name in caps X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: Gerd Hoffmann Used to be "UTB" not "USB". Signed-off-by: Gerd Hoffmann (cherry picked from commit 0ebfb144e8ad3f2da436d630fdcc5aa9ab646341) --- hw/usb/hcd-xhci.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/usb/hcd-xhci.c b/hw/usb/hcd-xhci.c index 5cf1a64..10be478 100644 --- a/hw/usb/hcd-xhci.c +++ b/hw/usb/hcd-xhci.c @@ -2372,7 +2372,7 @@ static uint32_t xhci_cap_read(XHCIState *xhci, uint32_t reg) return 0x02000002; /* USB 2.0 */ #endif case 0x24: /* Supported Protocol:04 */ - return 0x20425455; /* "USB " */ + return 0x20425355; /* "USB " */ case 0x28: /* Supported Protocol:08 */ return 0x00000001 | (USB2_PORTS<<8); case 0x2c: /* Supported Protocol:0c */ @@ -2381,7 +2381,7 @@ static uint32_t xhci_cap_read(XHCIState *xhci, uint32_t reg) case 0x30: /* Supported Protocol:00 */ return 0x03000002; /* USB 3.0 */ case 0x34: /* Supported Protocol:04 */ - return 0x20425455; /* "USB " */ + return 0x20425355; /* "USB " */ case 0x38: /* Supported Protocol:08 */ return 0x00000000 | (USB2_PORTS+1) | (USB3_PORTS<<8); case 0x3c: /* Supported Protocol:0c */