diff options
author | Mathias Nyman <mathias.nyman@linux.intel.com> | 2017-06-02 15:36:25 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-06-03 11:02:58 +0200 |
commit | 11e1d25db643da9d620bfc53b14ff7151220b5fb (patch) | |
tree | 96fe5a399acac36385cb665876444a915fdfdc3e /drivers/usb/host/xhci.h | |
parent | uwb: i1480: add missing goto (diff) | |
download | linux-11e1d25db643da9d620bfc53b14ff7151220b5fb.tar.xz linux-11e1d25db643da9d620bfc53b14ff7151220b5fb.zip |
xhci: remove unused stopped_td pointer
We no longer keep track of where we stopped in a stopped_td pointer.
We get the ring dequeue pointer from the endpoint or stream context
Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/xhci.h')
-rw-r--r-- | drivers/usb/host/xhci.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/usb/host/xhci.h b/drivers/usb/host/xhci.h index 73a28a986d5e..12df1323212b 100644 --- a/drivers/usb/host/xhci.h +++ b/drivers/usb/host/xhci.h @@ -924,7 +924,6 @@ struct xhci_virt_ep { #define EP_GETTING_NO_STREAMS (1 << 5) /* ---- Related to URB cancellation ---- */ struct list_head cancelled_td_list; - struct xhci_td *stopped_td; unsigned int stopped_stream; /* Watchdog timer for stop endpoint command to cancel URBs */ struct timer_list stop_cmd_timer; |