Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f570728f89c9d4b262f7c180e5a8e230e675af0c
Commit:     f570728f89c9d4b262f7c180e5a8e230e675af0c
Parent:     7f9705b04c1638b3682f63ece7931384f4542f17
Author:     Marcin Slusarz <[EMAIL PROTECTED]>
AuthorDate: Sun Dec 16 03:25:13 2007 +0100
Committer:  Greg Kroah-Hartman <[EMAIL PROTECTED]>
CommitDate: Fri Feb 1 14:34:58 2008 -0800

    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 <[EMAIL PROTECTED]>
    Signed-off-by: Greg Kroah-Hartman <[EMAIL PROTECTED]>
---
 drivers/usb/host/ehci-hcd.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c
index 5917c6b..fb2b227 100644
--- a/drivers/usb/host/ehci-hcd.c
+++ b/drivers/usb/host/ehci-hcd.c
@@ -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 */
                if (!list_empty (&qh->qtd_list)
                                && 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);
 
-                       if (status != 0) {
+                       if (schedule_status != 0) {
                                // shouldn't happen often, but ...
                                // FIXME kill those tds' urbs
                                err ("can't reschedule qh %p, err %d",
-                                       qh, status);
+                                       qh, schedule_status);
                        }
                        return status;
                }
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to