Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 10800f2c authored by Dan Carpenter's avatar Dan Carpenter Committed by Felipe Balbi
Browse files

usb: gadget: mv_udc: remove unneeded NULL check



We've dereferenced req already, and we checked for bogus parameters at
the start of the function.

Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent d81f3e4f
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -771,7 +771,6 @@ mv_ep_queue(struct usb_ep *_ep, struct usb_request *_req, gfp_t gfp_flags)
		udc->ep0_state = DATA_STATE_XMIT;

	/* irq handler advances the queue */
	if (req != NULL)
	list_add_tail(&req->queue, &ep->queue);
	spin_unlock_irqrestore(&udc->lock, flags);