aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/dwc3
diff options
context:
space:
mode:
authorFelipe Balbi <balbi@ti.com>2011-09-08 17:39:59 +0300
committerFelipe Balbi <balbi@ti.com>2011-09-09 13:05:22 +0300
commitf4aadbe49e9b0cae2c5e889061e10b9a335fe791 (patch)
tree79813cbf3ee5dde8395e29285d79a49a7ab1cac8 /drivers/usb/dwc3
parentusb: dwc3: gadget: do not map/unmap ZLP transfers (diff)
downloadlinux-dev-f4aadbe49e9b0cae2c5e889061e10b9a335fe791.tar.xz
linux-dev-f4aadbe49e9b0cae2c5e889061e10b9a335fe791.zip
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: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/dwc3')
-rw-r--r--drivers/usb/dwc3/core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/dwc3/core.h b/drivers/usb/dwc3/core.h
index 2e73d33e171d..e149f570437a 100644
--- a/drivers/usb/dwc3/core.h
+++ b/drivers/usb/dwc3/core.h
@@ -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)