mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-24 12:09:58 +00:00
xhci: kill port arg from xhci_setup_packet
Unused argument, remove it. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
3c4866e07e
commit
b819d7169a
@ -1392,7 +1392,7 @@ static int xhci_hle_control(XHCIState *xhci, XHCITransfer *xfer,
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static int xhci_setup_packet(XHCITransfer *xfer, XHCIPort *port, USBDevice *dev)
|
static int xhci_setup_packet(XHCITransfer *xfer, USBDevice *dev)
|
||||||
{
|
{
|
||||||
USBEndpoint *ep;
|
USBEndpoint *ep;
|
||||||
int dir;
|
int dir;
|
||||||
@ -1520,7 +1520,7 @@ static int xhci_fire_ctl_transfer(XHCIState *xhci, XHCITransfer *xfer)
|
|||||||
xfer->in_xfer = bmRequestType & USB_DIR_IN;
|
xfer->in_xfer = bmRequestType & USB_DIR_IN;
|
||||||
xfer->iso_xfer = false;
|
xfer->iso_xfer = false;
|
||||||
|
|
||||||
xhci_setup_packet(xfer, port, dev);
|
xhci_setup_packet(xfer, dev);
|
||||||
if (!xfer->in_xfer) {
|
if (!xfer->in_xfer) {
|
||||||
xhci_xfer_data(xfer, xfer->data, wLength, 0, 1, 0);
|
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;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
xhci_setup_packet(xfer, port, dev);
|
xhci_setup_packet(xfer, dev);
|
||||||
|
|
||||||
switch(epctx->type) {
|
switch(epctx->type) {
|
||||||
case ET_INTR_OUT:
|
case ET_INTR_OUT:
|
||||||
|
Loading…
Reference in New Issue
Block a user