diff options
author | Wolfgang Denk <wd@denx.de> | 2011-12-19 11:52:36 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-12-19 11:52:36 +0100 |
commit | 10879aa21ca22bdc631336d203b1742b16f91a30 (patch) | |
tree | abf31be8c9da22ed0c336bb1ce9210fb2b2f32a4 | |
parent | d3f80c77ca92eaf1e7166f0c4fdcaafefc563277 (diff) | |
download | u-boot-10879aa21ca22bdc631336d203b1742b16f91a30.tar.gz u-boot-10879aa21ca22bdc631336d203b1742b16f91a30.tar.xz u-boot-10879aa21ca22bdc631336d203b1742b16f91a30.zip |
drivers/usb/gadget/pxa27x_udc.c: Coding Style cleanup
Commit bdbcdc89 "pxa: convert pxa27x_udc to use read and write
functions" added a number of C++ comments. Fix these.
Signed-off-by: Wolfgang Denk <wd@denx.de>
-rw-r--r-- | drivers/usb/gadget/pxa27x_udc.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/usb/gadget/pxa27x_udc.c b/drivers/usb/gadget/pxa27x_udc.c index 0d3a9886f9..4c00081743 100644 --- a/drivers/usb/gadget/pxa27x_udc.c +++ b/drivers/usb/gadget/pxa27x_udc.c @@ -195,12 +195,12 @@ static int udc_read_urb_ep0(void) for (i = 0; i < w; i++) { data32[ep0_urb->actual_length / 4 + i] = readl(UDCDN(0)); -// ep0_urb->actual_length += 4; + /* ep0_urb->actual_length += 4; */ } for (i = 0; i < b; i++) { data8[ep0_urb->actual_length + w * 4 + i] = readb(UDCDN(0)); -// ep0_urb->actual_length++; + /* ep0_urb->actual_length++; */ } ep0_urb->actual_length += n; @@ -599,7 +599,6 @@ void udc_setup_ep(struct usb_device_instance *device, unsigned int id, writel(tmp, UDCCN(ep_num)); - //usbdbg usbdbg("UDCCR%c = %x", 'A' + ep_num-1, readl(UDCCN(ep_num))); usbdbg("UDCCSR%c = %x", 'A' + ep_num-1, readl(UDCCSN(ep_num))); } |