diff options
author | Felipe Balbi <felipe.balbi@linux.intel.com> | 2016-09-28 12:38:18 +0200 |
---|---|---|
committer | Felipe Balbi <felipe.balbi@linux.intel.com> | 2016-11-03 09:38:20 +0100 |
commit | e3b89080f2c50936a9f6eccedb1e07e293777f0a (patch) | |
tree | 6721636ad46a808c05606981d9ccc21590c5f2ea /drivers/usb/host/ehci-sched.c | |
parent | usb: gadget: udc: mv_udc: make use of new usb_endpoint_maxp_mult() (diff) | |
download | linux-e3b89080f2c50936a9f6eccedb1e07e293777f0a.tar.xz linux-e3b89080f2c50936a9f6eccedb1e07e293777f0a.zip |
usb: host: ehci: make use of new usb_endpoint_maxp_mult()
We have introduced a helper to calculate multiplier
value from wMaxPacketSize. Start using it.
Cc: Alan Stern <stern@rowland.harvard.edu>
Cc: <linux-usb@vger.kernel.org>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
Diffstat (limited to 'drivers/usb/host/ehci-sched.c')
-rw-r--r-- | drivers/usb/host/ehci-sched.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/ehci-sched.c b/drivers/usb/host/ehci-sched.c index 1dfe54f14737..6a9fa2c3a24e 100644 --- a/drivers/usb/host/ehci-sched.c +++ b/drivers/usb/host/ehci-sched.c @@ -1064,7 +1064,7 @@ iso_stream_init( /* knows about ITD vs SITD */ if (dev->speed == USB_SPEED_HIGH) { - unsigned multi = hb_mult(maxp); + unsigned multi = usb_endpoint_maxp_mult(&urb->ep->desc); stream->highspeed = 1; |