mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-20 03:04:01 +08:00
usb: host: remove unnecessary null check
Remove unnecessary null check. udev->tt cannot ever be NULL when this section of code runs. Addresses-Coverity-ID: 100828 Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com> Acked-by: Alan Stern <stern@rowland.harvard.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a86c309e71
commit
2aa3add0cc
@ -1105,7 +1105,7 @@ iso_stream_init(
|
||||
addr |= epnum << 8;
|
||||
addr |= dev->devnum;
|
||||
stream->ps.usecs = HS_USECS_ISO(maxp);
|
||||
think_time = dev->tt ? dev->tt->think_time : 0;
|
||||
think_time = dev->tt->think_time;
|
||||
stream->ps.tt_usecs = NS_TO_US(think_time + usb_calc_bus_time(
|
||||
dev->speed, is_input, 1, maxp));
|
||||
hs_transfers = max(1u, (maxp + 187) / 188);
|
||||
|
Loading…
Reference in New Issue
Block a user