Here's the 2.5 version of the patch to uhci.c to finish completions in
the correct order.

Please apply.

JE

# This is a BitKeeper generated patch for the following project:
# Project Name: greg k-h's linux 2.5 USB kernel tree
# This patch format is intended for GNU patch command version 2.5 or higher.
# This patch includes the following deltas:
#                  ChangeSet    1.928   -> 1.929  
#       drivers/usb/host/uhci-hcd.c     1.43    -> 1.44   
#
# The following is the BitKeeper ChangeSet Log
# --------------------------------------------
# 03/03/12      [EMAIL PROTECTED]       1.929
# uhci-hcd.c:
#   Make sure we return completions in the order they occur
# --------------------------------------------
#
diff -Nru a/drivers/usb/host/uhci-hcd.c b/drivers/usb/host/uhci-hcd.c
--- a/drivers/usb/host/uhci-hcd.c       Wed Mar 12 07:43:43 2003
+++ b/drivers/usb/host/uhci-hcd.c       Wed Mar 12 07:43:43 2003
@@ -136,7 +136,7 @@
        unsigned long flags;
 
        spin_lock_irqsave(&uhci->complete_list_lock, flags);
-       list_add(&urbp->complete_list, &uhci->complete_list);
+       list_add_tail(&urbp->complete_list, &uhci->complete_list);
        spin_unlock_irqrestore(&uhci->complete_list_lock, flags);
 }
 


-------------------------------------------------------
This SF.net email is sponsored by:Crypto Challenge is now open! 
Get cracking and register here for some mind boggling fun and 
the chance of winning an Apple iPod:
http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en
_______________________________________________
[EMAIL PROTECTED]
To unsubscribe, use the last form field at:
https://lists.sourceforge.net/lists/listinfo/linux-usb-devel

Reply via email to