1
0
Fork 0

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: 5fb694f96e ("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>
zero-sugar-mainline-defconfig
Michał Mirosław 2020-05-28 20:35:54 +02:00 committed by Felipe Balbi
parent 9706247d94
commit 30517ffeb3
1 changed files with 1 additions and 1 deletions

View File

@ -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);