Commit bb6c3422 authored by Rashika Kheria's avatar Rashika Kheria Committed by Greg Kroah-Hartman
Browse files

Staging: dwc2: Fix conditional statement since urb->actual_length is never less than zero.



This patch fixes the following smatch warning in hcd.c:
drivers/staging/dwc2/hcd.c:787 dwc2_assign_and_init_hc() warn: unsigned 'urb->actual_length' is never less than zero.

Signed-off-by: default avatarRashika Kheria <rashika.kheria@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1f74c04d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -784,7 +784,7 @@ static int dwc2_assign_and_init_hc(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh)
	chan->data_pid_start = qh->data_toggle;
	chan->multi_count = 1;

	if ((urb->actual_length < 0 || urb->actual_length > urb->length) &&
	if (urb->actual_length > urb->length &&
		!dwc2_hcd_is_pipe_in(&urb->pipe_info))
		urb->actual_length = urb->length;