mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-20 19:23:57 +08:00
USB: ehci-hcd: fix sparse warning about shadowing 'status' symbol
fix warning: drivers/usb/host/ehci-hcd.c:832:8: warning: symbol 'status' shadows an earlier one drivers/usb/host/ehci-hcd.c:790:71: originally declared here Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
7f9705b04c
commit
f570728f89
@ -862,16 +862,16 @@ static int ehci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
|
|||||||
/* reschedule QH iff another request is queued */
|
/* reschedule QH iff another request is queued */
|
||||||
if (!list_empty (&qh->qtd_list)
|
if (!list_empty (&qh->qtd_list)
|
||||||
&& HC_IS_RUNNING (hcd->state)) {
|
&& HC_IS_RUNNING (hcd->state)) {
|
||||||
int status;
|
int schedule_status;
|
||||||
|
|
||||||
status = qh_schedule (ehci, qh);
|
schedule_status = qh_schedule (ehci, qh);
|
||||||
spin_unlock_irqrestore (&ehci->lock, flags);
|
spin_unlock_irqrestore (&ehci->lock, flags);
|
||||||
|
|
||||||
if (status != 0) {
|
if (schedule_status != 0) {
|
||||||
// shouldn't happen often, but ...
|
// shouldn't happen often, but ...
|
||||||
// FIXME kill those tds' urbs
|
// FIXME kill those tds' urbs
|
||||||
err ("can't reschedule qh %p, err %d",
|
err ("can't reschedule qh %p, err %d",
|
||||||
qh, status);
|
qh, schedule_status);
|
||||||
}
|
}
|
||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user