From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35687) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XTmcq-0000Sf-JA for qemu-devel@nongnu.org; Tue, 16 Sep 2014 02:52:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XTmcj-0003pl-31 for qemu-devel@nongnu.org; Tue, 16 Sep 2014 02:52:32 -0400 Received: from mx1.redhat.com ([209.132.183.28]:27047) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XTmci-0003o8-Rz for qemu-devel@nongnu.org; Tue, 16 Sep 2014 02:52:25 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s8G6qKCN015225 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Tue, 16 Sep 2014 02:52:20 -0400 From: Gerd Hoffmann Date: Tue, 16 Sep 2014 08:43:35 +0200 Message-Id: <1410849819-24102-2-git-send-email-kraxel@redhat.com> In-Reply-To: <1410849819-24102-1-git-send-email-kraxel@redhat.com> References: <1410849819-24102-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 1/5] usb: tag xhci as hotpluggable 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 | 1 - 1 file changed, 1 deletion(-) diff --git a/hw/usb/hcd-xhci.c b/hw/usb/hcd-xhci.c index 73ced1f..c556367 100644 --- a/hw/usb/hcd-xhci.c +++ b/hw/usb/hcd-xhci.c @@ -3874,7 +3874,6 @@ static void xhci_class_init(ObjectClass *klass, void *data) dc->vmsd = &vmstate_xhci; dc->props = xhci_properties; dc->reset = xhci_reset; - dc->hotpluggable = false; set_bit(DEVICE_CATEGORY_USB, dc->categories); k->init = usb_xhci_initfn; k->exit = usb_xhci_exit; -- 1.8.3.1