projects
/
kernel
/
kernel-generic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3fd9825
)
[ARM] 5403/1: pxa25x_ep_fifo_flush() *ep->reg_udccs always set to 0
author
Roel Kluin
<roel.kluin@gmail.com>
Thu, 19 Feb 2009 10:57:46 +0000
(11:57 +0100)
committer
Russell King
<rmk+kernel@arm.linux.org.uk>
Thu, 19 Feb 2009 11:04:46 +0000
(11:04 +0000)
*ep->reg_udccs is always set to 0.
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Acked-by: Eric Miao <eric.miao@marvell.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
drivers/usb/gadget/pxa25x_udc.c
patch
|
blob
|
history
diff --git
a/drivers/usb/gadget/pxa25x_udc.c
b/drivers/usb/gadget/pxa25x_udc.c
index
9b36205
..
0ce4e28
100644
(file)
--- a/
drivers/usb/gadget/pxa25x_udc.c
+++ b/
drivers/usb/gadget/pxa25x_udc.c
@@
-904,8
+904,8
@@
static void pxa25x_ep_fifo_flush(struct usb_ep *_ep)
/* most IN status is the same, but ISO can't stall */
*ep->reg_udccs = UDCCS_BI_TPC|UDCCS_BI_FTF|UDCCS_BI_TUR
- | (ep->bmAttributes == USB_ENDPOINT_XFER_ISOC
)
- ? 0 : UDCCS_BI_SST;
+ | (ep->bmAttributes == USB_ENDPOINT_XFER_ISOC
+ ? 0 : UDCCS_BI_SST
)
;
}