From patchwork Thu Aug 16 10:11:48 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gerd Hoffmann X-Patchwork-Id: 177949 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 5C6902C0092 for ; Thu, 16 Aug 2012 20:47:26 +1000 (EST) Received: from localhost ([::1]:56392 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T1xbo-0002c7-58 for incoming@patchwork.ozlabs.org; Thu, 16 Aug 2012 06:47:24 -0400 Received: from eggs.gnu.org ([208.118.235.92]:53461) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T1xbZ-0002bF-JQ for qemu-devel@nongnu.org; Thu, 16 Aug 2012 06:47:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T1xbY-0006U1-PP for qemu-devel@nongnu.org; Thu, 16 Aug 2012 06:47:09 -0400 Received: from mx1.redhat.com ([209.132.183.28]:35998) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T1xbY-0006Tc-H5 for qemu-devel@nongnu.org; Thu, 16 Aug 2012 06:47:08 -0400 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q7GAl7Xa016372 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 16 Aug 2012 06:47:07 -0400 Received: from rincewind.home.kraxel.org (ovpn-116-65.ams2.redhat.com [10.36.116.65]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q7GAl6i4022903; Thu, 16 Aug 2012 06:47:07 -0400 Received: by rincewind.home.kraxel.org (Postfix, from userid 500) id 5E3C141190; Thu, 16 Aug 2012 12:11:51 +0200 (CEST) From: Gerd Hoffmann To: qemu-devel@nongnu.org Date: Thu, 16 Aug 2012 12:11:48 +0200 Message-Id: <1345111910-26791-3-git-send-email-kraxel@redhat.com> In-Reply-To: <1345111910-26791-1-git-send-email-kraxel@redhat.com> References: <1345111910-26791-1-git-send-email-kraxel@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.25 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Cc: Gerd Hoffmann Subject: [Qemu-devel] [PATCH for-1.2 2/4] usb: update uas product id 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 Pick other product id to fix clash with audio. Current usage list (after applying this patch): 46f4:0001 -- usb-storage 46f4:0002 -- usb-audio 46f4:0003 -- usb-uas Signed-off-by: Gerd Hoffmann --- hw/usb/dev-uas.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/usb/dev-uas.c b/hw/usb/dev-uas.c index 9b02ff4..b13eeba 100644 --- a/hw/usb/dev-uas.c +++ b/hw/usb/dev-uas.c @@ -223,7 +223,7 @@ static const USBDescDevice desc_device_high = { static const USBDesc desc = { .id = { .idVendor = 0x46f4, /* CRC16() of "QEMU" */ - .idProduct = 0x0002, + .idProduct = 0x0003, .bcdDevice = 0, .iManufacturer = STR_MANUFACTURER, .iProduct = STR_PRODUCT,