linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] usb: gadget: f_hid: idle uses the highest byte for duration
@ 2021-07-27 18:58 Maxim Devaev
  2021-07-28  6:25 ` Greg KH
  2021-07-28  6:31 ` Felipe Balbi
  0 siblings, 2 replies; 7+ messages in thread
From: Maxim Devaev @ 2021-07-27 18:58 UTC (permalink / raw)
  To: balbi; +Cc: gregkh, sandeen, mdevaev, linux-usb, linux-kernel

SET_IDLE value must be shifted 8 bits to the right to get duration.
This confirmed by USBCV test.

Signed-off-by: Maxim Devaev <mdevaev@gmail.com>
---
 drivers/usb/gadget/function/f_hid.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/usb/gadget/function/f_hid.c b/drivers/usb/gadget/function/f_hid.c
index 8d50c8b12..bb476e121 100644
--- a/drivers/usb/gadget/function/f_hid.c
+++ b/drivers/usb/gadget/function/f_hid.c
@@ -573,7 +573,7 @@ static int hidg_setup(struct usb_function *f,
 		  | HID_REQ_SET_IDLE):
 		VDBG(cdev, "set_idle\n");
 		length = 0;
-		hidg->idle = value;
+		hidg->idle = value >> 8;
 		goto respond;
 		break;
 
-- 
2.32.0


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2021-07-28  6:48 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-27 18:58 [PATCH] usb: gadget: f_hid: idle uses the highest byte for duration Maxim Devaev
2021-07-28  6:25 ` Greg KH
2021-07-28  6:28   ` Maxim Devaev
2021-07-28  6:31 ` Felipe Balbi
2021-07-28  6:41   ` Greg KH
2021-07-28  6:47     ` Felipe Balbi
2021-07-28  6:48     ` Maxim Devaev

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).