Input: iforce - fix control-message timeout
authorJohan Hovold <johan@kernel.org>
Wed, 10 Nov 2021 06:58:01 +0000 (22:58 -0800)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>
Wed, 10 Nov 2021 07:12:17 +0000 (23:12 -0800)
USB control-message timeouts are specified in milliseconds and should
specifically not vary with CONFIG_HZ.

Fixes: 487358627825 ("Input: iforce - use DMA-safe buffer when getting IDs from USB")
Signed-off-by: Johan Hovold <johan@kernel.org>
Cc: stable@vger.kernel.org # 5.3
Link: https://lore.kernel.org/r/20211025115501.5190-1-johan@kernel.org
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
drivers/input/joystick/iforce/iforce-usb.c

index 6c554c1..ea58805 100644 (file)
@@ -92,7 +92,7 @@ static int iforce_usb_get_id(struct iforce *iforce, u8 id,
                                 id,
                                 USB_TYPE_VENDOR | USB_DIR_IN |
                                        USB_RECIP_INTERFACE,
-                                0, 0, buf, IFORCE_MAX_LENGTH, HZ);
+                                0, 0, buf, IFORCE_MAX_LENGTH, 1000);
        if (status < 0) {
                dev_err(&iforce_usb->intf->dev,
                        "usb_submit_urb failed: %d\n", status);