diff options
author | Felipe Balbi <felipe.balbi@linux.intel.com> | 2016-03-30 09:37:03 +0300 |
---|---|---|
committer | Felipe Balbi <felipe.balbi@linux.intel.com> | 2016-04-14 09:24:39 +0300 |
commit | 696c8b1282205caa5206264449f80ef756f14ef7 (patch) | |
tree | 7d34ac9940b479197c9b3bc77180f5d30b22f917 /drivers/usb/dwc3/core.h | |
parent | 660e9bde74d6915227d7ee3485b11e5f52637b26 (diff) | |
download | linux-696c8b1282205caa5206264449f80ef756f14ef7.tar.xz |
usb: dwc3: drop ev_buffs array
we will be using a single event buffer and that
renders ev_buffs array unnecessary. Let's remove it
in favor of a single pointer to a single event
buffer.
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
Diffstat (limited to 'drivers/usb/dwc3/core.h')
-rw-r--r-- | drivers/usb/dwc3/core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/dwc3/core.h b/drivers/usb/dwc3/core.h index be03999e2dfd..df72234a805b 100644 --- a/drivers/usb/dwc3/core.h +++ b/drivers/usb/dwc3/core.h @@ -753,7 +753,7 @@ struct dwc3 { struct platform_device *xhci; struct resource xhci_resources[DWC3_XHCI_RESOURCES_NUM]; - struct dwc3_event_buffer **ev_buffs; + struct dwc3_event_buffer *ev_buf; struct dwc3_ep *eps[DWC3_ENDPOINTS_NUM]; struct usb_gadget gadget; |