mirror of
https://github.com/torvalds/linux.git
synced 2026-06-09 07:03:37 +02:00
usb: gadget: udc: atmel: fix uninitialized read in debug printk
[ Upstream commit30517ffeb3] 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> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
43969aa591
commit
22bc69d5a8
|
|
@ -860,7 +860,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);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user