提交 43f3b8cb 编写于 作者: C Chunfeng Yun 提交者: Greg Kroah-Hartman

usb: mtu3: set interval of FS intr and isoc endpoint

Add support to set interval also for FS intr and isoc endpoint.

Fixes: 4d79e042 ("usb: mtu3: add support for usb3.1 IP")
Cc: stable@vger.kernel.org
Signed-off-by: NChunfeng Yun <chunfeng.yun@mediatek.com>
Link: https://lore.kernel.org/r/20211218095749.6250-4-chunfeng.yun@mediatek.comSigned-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 8c313e3b
...@@ -92,6 +92,13 @@ static int mtu3_ep_enable(struct mtu3_ep *mep) ...@@ -92,6 +92,13 @@ static int mtu3_ep_enable(struct mtu3_ep *mep)
interval = clamp_val(interval, 1, 16); interval = clamp_val(interval, 1, 16);
mult = usb_endpoint_maxp_mult(desc) - 1; mult = usb_endpoint_maxp_mult(desc) - 1;
} }
break;
case USB_SPEED_FULL:
if (usb_endpoint_xfer_isoc(desc))
interval = clamp_val(desc->bInterval, 1, 16);
else if (usb_endpoint_xfer_int(desc))
interval = clamp_val(desc->bInterval, 1, 255);
break; break;
default: default:
break; /*others are ignored */ break; /*others are ignored */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册