From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40196) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WrTRN-0003ij-Gh for qemu-devel@nongnu.org; Mon, 02 Jun 2014 10:42:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WrTRE-0002It-Hi for qemu-devel@nongnu.org; Mon, 02 Jun 2014 10:42:21 -0400 Received: from mx1.redhat.com ([209.132.183.28]:48972) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WrTRE-0002IJ-A5 for qemu-devel@nongnu.org; Mon, 02 Jun 2014 10:42:12 -0400 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s52EgB4a006759 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 2 Jun 2014 10:42:11 -0400 From: Gerd Hoffmann Date: Mon, 2 Jun 2014 16:41:59 +0200 Message-Id: <1401720127-32546-4-git-send-email-kraxel@redhat.com> In-Reply-To: <1401720127-32546-1-git-send-email-kraxel@redhat.com> References: <1401720127-32546-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PULL 03/10] usb: add uhci port status reserved bit 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 --- include/hw/usb/uhci-regs.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/hw/usb/uhci-regs.h b/include/hw/usb/uhci-regs.h index 63c8223..c7315c5 100644 --- a/include/hw/usb/uhci-regs.h +++ b/include/hw/usb/uhci-regs.h @@ -27,6 +27,7 @@ #define UHCI_PORT_SUSPEND (1 << 12) #define UHCI_PORT_RESET (1 << 9) #define UHCI_PORT_LSDA (1 << 8) +#define UHCI_PORT_RSVD1 (1 << 7) #define UHCI_PORT_RD (1 << 6) #define UHCI_PORT_ENC (1 << 3) #define UHCI_PORT_EN (1 << 2) -- 1.8.3.1