aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYusuke Goda <[email protected]>2011-01-31 15:49:34 +0900
committerGreg Kroah-Hartman <[email protected]>2011-02-03 16:45:50 -0800
commit6d86d52a33cfe6338efd007cfcca895b18c1d84b (patch)
tree67042b4a1b9b25b0ee7471525d3a56646d1f7960
parent6ec2f46c4b4abf48c88c0ae7c476f347b97e1105 (diff)
usb: r8a66597-udc: Fixed bufnum of Bulk
Signed-off-by: Yusuke Goda <[email protected]> Acked-by: Yoshihiro Shimoda <[email protected]> Cc: Paul Mundt <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r--drivers/usb/gadget/r8a66597-udc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/gadget/r8a66597-udc.c b/drivers/usb/gadget/r8a66597-udc.c
index 20d43da319ae..015118535f77 100644
--- a/drivers/usb/gadget/r8a66597-udc.c
+++ b/drivers/usb/gadget/r8a66597-udc.c
@@ -258,7 +258,7 @@ static int pipe_buffer_setting(struct r8a66597 *r8a66597,
break;
case R8A66597_BULK:
/* isochronous pipes may be used as bulk pipes */
- if (info->pipe > R8A66597_BASE_PIPENUM_BULK)
+ if (info->pipe >= R8A66597_BASE_PIPENUM_BULK)
bufnum = info->pipe - R8A66597_BASE_PIPENUM_BULK;
else
bufnum = info->pipe - R8A66597_BASE_PIPENUM_ISOC;