The patch titled
     ehci-hcd: fix sparse warning about shadowing 'status' symbol
has been removed from the -mm tree.  Its filename was
     ehci-hcd-fix-sparse-warning-about-shadowing-status-symbol.patch

This patch was dropped because it was merged into mainline or a subsystem tree

------------------------------------------------------
Subject: ehci-hcd: fix sparse warning about shadowing 'status' symbol
From: Marcin Ślusarz <[EMAIL PROTECTED]>

Signed-off-by: Marcin Ślusarz <[EMAIL PROTECTED]>
Cc: Greg KH <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 drivers/usb/host/ehci-hcd.c |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff -puN 
drivers/usb/host/ehci-hcd.c~ehci-hcd-fix-sparse-warning-about-shadowing-status-symbol
 drivers/usb/host/ehci-hcd.c
--- 
a/drivers/usb/host/ehci-hcd.c~ehci-hcd-fix-sparse-warning-about-shadowing-status-symbol
+++ a/drivers/usb/host/ehci-hcd.c
@@ -830,16 +830,16 @@ static int ehci_urb_dequeue(struct usb_h
                /* 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;
                }
_

Patches currently in -mm which might be from [EMAIL PROTECTED] are

git-alsa.patch
ehci-hcd-fix-sparse-warning-about-shadowing-status-symbol-checkpatch-fixes.patch
vgacon-fix-sparse-warning-about-shadowing-i-symbol.patch
fbcon-fix-sparse-warning-about-shadowing-p-symbol.patch
fbcon-fix-sparse-warning-about-shadowing-rotate-symbol.patch
logo-move-declarations-of-logos-to-linux_logoh.patch
logo-move-declarations-of-logos-to-linux_logoh-fix.patch

-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to