summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichał Mirosław <mirq-linux@rere.qmqm.pl>2020-05-28 20:35:54 +0200
committerFelipe Balbi <balbi@kernel.org>2020-07-09 10:13:07 +0300
commit30517ffeb3bff842e1355cbc32f1959d9dbb5414 (patch)
treec271ada8fe0a225ea5aa6027634bd1ce7c593050
parent9706247d94165ef9d6f7f00308e1cd7e0cc9251d (diff)
downloadlinux-30517ffeb3bff842e1355cbc32f1959d9dbb5414.tar.gz
linux-30517ffeb3bff842e1355cbc32f1959d9dbb5414.tar.bz2
linux-30517ffeb3bff842e1355cbc32f1959d9dbb5414.zip
usb: gadget: udc: atmel: fix uninitialized read in debug printk
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>
-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 9153e220848d..9342a3d24963 100644
--- a/drivers/usb/gadget/udc/atmel_usba_udc.c
+++ b/drivers/usb/gadget/udc/atmel_usba_udc.c
@@ -865,7 +865,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);