usb: dwc3: core: fix wrong OTG event regitser offset
authorGeorge Cherian <george.cherian@ti.com>
Thu, 14 Mar 2013 10:35:24 +0000 (16:05 +0530)
committerFelipe Balbi <balbi@ti.com>
Mon, 18 Mar 2013 09:18:13 +0000 (11:18 +0200)
This patch fixes the wrong OTG_EVT,OTG_EVTEN and OTG_STS register
offsets.

While at that, also add a missing register to debugfs regdump
utility.

Signed-off-by: George Cherian <george.cherian@ti.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/dwc3/core.h
drivers/usb/dwc3/debugfs.c

index b42f71c..b69d322 100644 (file)
 /* OTG Registers */
 #define DWC3_OCFG              0xcc00
 #define DWC3_OCTL              0xcc04
-#define DWC3_OEVTEN            0xcc08
-#define DWC3_OSTS              0xcc0C
+#define DWC3_OEVT              0xcc08
+#define DWC3_OEVTEN            0xcc0C
+#define DWC3_OSTS              0xcc10
 
 /* Bit fields */
 
index 8b23d04..9e9f122 100644 (file)
@@ -372,6 +372,7 @@ static const struct debugfs_reg32 dwc3_regs[] = {
 
        dump_register(OCFG),
        dump_register(OCTL),
+       dump_register(OEVT),
        dump_register(OEVTEN),
        dump_register(OSTS),
 };