diff options
author | Sebastian Andrzej Siewior <bigeasy@linutronix.de> | 2012-09-06 18:11:08 (GMT) |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2012-09-10 12:35:58 (GMT) |
commit | 4001a7a163d8e49eb9baf294527ad2ed50202e22 (patch) | |
tree | 6ef275d72dca6a8eb5d2e61ef237080c37bd2c92 /drivers | |
parent | ffe0b335062505a98d7296dae2c2a197713f87e0 (diff) | |
download | linux-4001a7a163d8e49eb9baf294527ad2ed50202e22.tar.xz |
usb: gadget: pxa25x: make it compile with debug again
|drivers/usb/gadget/pxa25x_udc.h: In function 'dump_state':
|drivers/usb/gadget/pxa25x_udc.h:228:20: error: invalid type argument of '->' (have 'struct usb_ep')
Acked-by: Michal Nazarewicz <mina86@mina86.com>
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/usb/gadget/pxa25x_udc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/gadget/pxa25x_udc.h b/drivers/usb/gadget/pxa25x_udc.h index 861f4df..2eca1e7 100644 --- a/drivers/usb/gadget/pxa25x_udc.h +++ b/drivers/usb/gadget/pxa25x_udc.h @@ -225,7 +225,7 @@ dump_state(struct pxa25x_udc *dev) dev->stats.read.bytes, dev->stats.read.ops); for (i = 1; i < PXA_UDC_NUM_ENDPOINTS; i++) { - if (dev->ep [i].desc == NULL) + if (dev->ep[i].ep.desc == NULL) continue; DMSG ("udccs%d = %02x\n", i, *dev->ep->reg_udccs); } |