Commit 708368fb authored by Ruan Jinjie's avatar Ruan Jinjie Committed by Greg Kroah-Hartman
Browse files

usb: chipidea: udc: Remove an unnecessary NULL value



The NULL initialization of the pointers assigned by kzalloc() first is
not necessary, because if the kzalloc() failed, the pointers will be
assigned NULL, otherwise it works as usual. so remove it.

Signed-off-by: default avatarRuan Jinjie <ruanjinjie@huawei.com>
Link: https://lore.kernel.org/r/20230804093253.91647-4-ruanjinjie@huawei.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f87ba66a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1463,7 +1463,7 @@ static int ep_disable(struct usb_ep *ep)
 */
static struct usb_request *ep_alloc_request(struct usb_ep *ep, gfp_t gfp_flags)
{
	struct ci_hw_req *hwreq = NULL;
	struct ci_hw_req *hwreq;

	if (ep == NULL)
		return NULL;