summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichał Mirosław <mirq-linux@rere.qmqm.pl>2020-05-28 20:35:54 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-07-22 09:22:24 +0200
commit0db15001a2d6b77e535ad4505a5e231106b95eb2 (patch)
treebda1df62d40596b59fe626fb6c8cf2a9ef1a1eaa
parent6e92597e7026d28322cd322d6adc622b8e7a4093 (diff)
downloadlinux-stable-0db15001a2d6b77e535ad4505a5e231106b95eb2.tar.gz
linux-stable-0db15001a2d6b77e535ad4505a5e231106b95eb2.tar.bz2
linux-stable-0db15001a2d6b77e535ad4505a5e231106b95eb2.zip
usb: gadget: udc: atmel: fix uninitialized read in debug printk
[ 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>
-rw-r--r--drivers/usb/gadget/udc/atmel_usba_udc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/gadget/udc/atmel_usba_udc.c b/drivers/usb/gadget/udc/atmel_usba_udc.c
index 39676824a2c6..8540e52c28a9 100644
--- a/drivers/usb/gadget/udc/atmel_usba_udc.c
+++ b/drivers/usb/gadget/udc/atmel_usba_udc.c
@@ -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);