]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
usb: renesas_usbhs: fixup __usbhs_for_each_pipe 1st pos
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Tue, 16 Oct 2012 06:24:55 +0000 (23:24 -0700)
committerFelipe Balbi <balbi@ti.com>
Tue, 16 Oct 2012 09:47:35 +0000 (12:47 +0300)
__usbhs_for_each_pipe() is the macro which moves around each pipe,
but it has a bug which didn't care about 1st pipe's position.
Because of this bug, it moves around
pipe0, pipe2, pipe3 ... even though it requested pipe1, pipe2, pipe3...
This patch modifies it.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/renesas_usbhs/pipe.h

index 08786c06dcf1d21f0784ea6d02553c381a11dfd0..3d80c7b1fd1b4ba15133e2ffcd3c5db7be2e9933 100644 (file)
@@ -54,7 +54,7 @@ struct usbhs_pipe_info {
  * pipe list
  */
 #define __usbhs_for_each_pipe(start, pos, info, i)     \
-       for (i = start, pos = (info)->pipe;             \
+       for (i = start, pos = (info)->pipe + i;         \
             i < (info)->size;                          \
             i++, pos = (info)->pipe + i)