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

Commit f4aadbe4 authored by Felipe Balbi's avatar Felipe Balbi
Browse files

usb: dwc3: Fix definition of DWC3_GCTL_U2RSTECN



that should be 1 << 16, not 16. Caused so many
problems and we never caught it before.

Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent 78c58a53
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -147,7 +147,7 @@

/* Global Configuration Register */
#define DWC3_GCTL_PWRDNSCALE(n)	(n << 19)
#define DWC3_GCTL_U2RSTECN	16
#define DWC3_GCTL_U2RSTECN	(1 << 16)
#define DWC3_GCTL_RAMCLKSEL(x)	((x & DWC3_GCTL_CLK_MASK) << 6)
#define DWC3_GCTL_CLK_BUS	(0)
#define DWC3_GCTL_CLK_PIPE	(1)