From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:44725) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RpLJ0-0007or-Hw for qemu-devel@nongnu.org; Mon, 23 Jan 2012 09:55:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RpLIt-0004Ui-BW for qemu-devel@nongnu.org; Mon, 23 Jan 2012 09:55:34 -0500 Received: from mx1.redhat.com ([209.132.183.28]:48355) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RpLIt-0004UF-4j for qemu-devel@nongnu.org; Mon, 23 Jan 2012 09:55:27 -0500 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q0NEtQkE031573 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 23 Jan 2012 09:55:26 -0500 From: Gerd Hoffmann Date: Mon, 23 Jan 2012 15:55:09 +0100 Message-Id: <1327330511-16307-24-git-send-email-kraxel@redhat.com> In-Reply-To: <1327330511-16307-1-git-send-email-kraxel@redhat.com> References: <1327330511-16307-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 23/25] xhci: kill port arg from xhci_setup_packet List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Unused argument, remove it. Signed-off-by: Gerd Hoffmann --- hw/usb-xhci.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hw/usb-xhci.c b/hw/usb-xhci.c index 1e8836f..cd88c76 100644 --- a/hw/usb-xhci.c +++ b/hw/usb-xhci.c @@ -1390,7 +1390,7 @@ static int xhci_hle_control(XHCIState *xhci, XHCITransfer *xfer, } #endif -static int xhci_setup_packet(XHCITransfer *xfer, XHCIPort *port, USBDevice *dev) +static int xhci_setup_packet(XHCITransfer *xfer, USBDevice *dev) { USBEndpoint *ep; int dir; @@ -1518,7 +1518,7 @@ static int xhci_fire_ctl_transfer(XHCIState *xhci, XHCITransfer *xfer) xfer->in_xfer = bmRequestType & USB_DIR_IN; xfer->iso_xfer = false; - xhci_setup_packet(xfer, port, dev); + xhci_setup_packet(xfer, dev); if (!xfer->in_xfer) { xhci_xfer_data(xfer, xfer->data, wLength, 0, 1, 0); } @@ -1569,7 +1569,7 @@ static int xhci_submit(XHCIState *xhci, XHCITransfer *xfer, XHCIEPContext *epctx return -1; } - xhci_setup_packet(xfer, port, dev); + xhci_setup_packet(xfer, dev); switch(epctx->type) { case ET_INTR_OUT: -- 1.7.1