Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d7be6a71 authored by Vamsi Krishna's avatar Vamsi Krishna
Browse files

dwc3: Increase number of TRBs per EP to 1024



Some function drivers like rmnet/rndis can submit 200+ requests
at once. Increase number of trbs per ep to accommodate such
function drivers.

Change-Id: I6ad1edd64c040d2094871bc716a557c832fe72b3
Signed-off-by: default avatarVamsi Krishna <vskrishn@codeaurora.org>
parent bf291150
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -481,7 +481,7 @@ struct dwc3_ep_events {
#define DWC3_EP_DIRECTION_TX	true
#define DWC3_EP_DIRECTION_RX	false

#define DWC3_TRB_NUM		32
#define DWC3_TRB_NUM		1024
#define DWC3_TRB_MASK		(DWC3_TRB_NUM - 1)

/**