diff options
author | Mathias Nyman <[email protected]> | 2021-06-17 18:03:51 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2021-06-17 17:34:29 +0200 |
commit | ebd88cf50729e1891dbd307dec311b8f05ba2462 (patch) | |
tree | a6aa9f3e3a9cceac811fe96ec7e4ef40f795a9a5 | |
parent | 03026197bb657d784220b040c6173267a0375741 (diff) |
xhci: Remove unused defines for ERST_SIZE and ERST_ENTRIES
We don't want those around confusing people.
ERST_NUM_SEGS is used both when allocating event ring segments, and when
allocating entries in the event ring segment table (erst).
Signed-off-by: Mathias Nyman <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/usb/host/xhci.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/usb/host/xhci.h b/drivers/usb/host/xhci.h index a1d5ffb7474d..85ba326806ab 100644 --- a/drivers/usb/host/xhci.h +++ b/drivers/usb/host/xhci.h @@ -1663,10 +1663,6 @@ struct urb_priv { * meaning 64 ring segments. * Initial allocated size of the ERST, in number of entries */ #define ERST_NUM_SEGS 1 -/* Initial allocated size of the ERST, in number of entries */ -#define ERST_SIZE 64 -/* Initial number of event segment rings allocated */ -#define ERST_ENTRIES 1 /* Poll every 60 seconds */ #define POLL_TIMEOUT 60 /* Stop endpoint command timeout (secs) for URB cancellation watchdog timer */ |