diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2012-01-20 15:25:16 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2012-02-10 12:16:31 +0100 |
commit | b819d7169a8f026c7b9174b7cbce8ab50fc7908a (patch) | |
tree | 2b2ca474b523ab06f9e614a857ea065c63dc1ab4 /hw/usb-xhci.c | |
parent | 3c4866e07ed17c7d64c2fd30738f68276ca353d9 (diff) |
xhci: kill port arg from xhci_setup_packet
Unused argument, remove it.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/usb-xhci.c')
-rw-r--r-- | 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 7682126e93..65214af9c4 100644 --- a/hw/usb-xhci.c +++ b/hw/usb-xhci.c @@ -1392,7 +1392,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; @@ -1520,7 +1520,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); } @@ -1571,7 +1571,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: |