From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:47415) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QORg6-0001S4-2u for qemu-devel@nongnu.org; Mon, 23 May 2011 05:43:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QORg2-0007ig-6C for qemu-devel@nongnu.org; Mon, 23 May 2011 05:43:58 -0400 Received: from mx1.redhat.com ([209.132.183.28]:9220) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QORg1-0007iV-VK for qemu-devel@nongnu.org; Mon, 23 May 2011 05:43:54 -0400 From: Gerd Hoffmann Date: Mon, 23 May 2011 11:43:22 +0200 Message-Id: <1306143819-30287-2-git-send-email-kraxel@redhat.com> In-Reply-To: <1306143819-30287-1-git-send-email-kraxel@redhat.com> References: <1306143819-30287-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 01/18] usb: Add Interface Association Descriptor descriptor type List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann , Brad Hards From: Brad Hards Signed-off-by: Brad Hards Signed-off-by: Gerd Hoffmann --- hw/usb.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/hw/usb.h b/hw/usb.h index 7e46141..ca06bf8 100644 --- a/hw/usb.h +++ b/hw/usb.h @@ -124,6 +124,7 @@ #define USB_DT_ENDPOINT 0x05 #define USB_DT_DEVICE_QUALIFIER 0x06 #define USB_DT_OTHER_SPEED_CONFIG 0x07 +#define USB_DT_INTERFACE_ASSOC 0x0B #define USB_ENDPOINT_XFER_CONTROL 0 #define USB_ENDPOINT_XFER_ISOC 1 -- 1.7.1