Skip to content

Commit ab29b21

Browse files
seebegregkh
authored andcommitted
usb: r8a66597-hcd: decrease timeout
commit dd14a3e9b92ac6f0918054f9e3477438760a4fa6 upstream. The timeout for BULK packets was 300ms which is a long time if other endpoints or devices are waiting for their turn. Changing it to 50ms greatly increased the overall performance for multi-endpoint devices. Fixes: 5d30435 ("usb: r8a66597-hcd: host controller driver for R8A6659") Signed-off-by: Chris Brandt <chris.brandt@renesas.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 4c7a6dd commit ab29b21

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/usb/host/r8a66597-hcd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1269,7 +1269,7 @@ static void set_td_timer(struct r8a66597 *r8a66597, struct r8a66597_td *td)
12691269
time = 30;
12701270
break;
12711271
default:
1272-
time = 300;
1272+
time = 50;
12731273
break;
12741274
}
12751275

0 commit comments

Comments
 (0)