]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
usb: gadget: udc: atmel: fix uninitialized read in debug printk
authorMichał Mirosław <mirq-linux@rere.qmqm.pl>
Thu, 28 May 2020 18:35:54 +0000 (20:35 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 22 Jul 2020 07:22:24 +0000 (09:22 +0200)
[ Upstream commit 30517ffeb3bff842e1355cbc32f1959d9dbb5414 ]

Fixed commit moved the assignment of 'req', but did not update a
reference in the DBG() call. Use the argument as it was renamed.

Fixes: 5fb694f96e7c ("usb: gadget: udc: atmel: fix possible oops when unloading module")
Signed-off-by: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Signed-off-by: Felipe Balbi <balbi@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/usb/gadget/udc/atmel_usba_udc.c

index 39676824a2c6fffdc4952318f8cdb4074d0a8cba..8540e52c28a97fac6b62291f10c1d2add8aed70b 100644 (file)
@@ -912,7 +912,7 @@ static int usba_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req)
        u32 status;
 
        DBG(DBG_GADGET | DBG_QUEUE, "ep_dequeue: %s, req %p\n",
-                       ep->ep.name, req);
+                       ep->ep.name, _req);
 
        spin_lock_irqsave(&udc->lock, flags);