# This is a BitKeeper generated patch for the following project:
# Project Name: Linux kernel tree
# This patch format is intended for GNU patch command version 2.5 or higher.
# This patch includes the following deltas:
#                  ChangeSet    1.395   -> 1.396  
#       drivers/usb/usb-uhci.h  1.4     -> 1.5    
#
# The following is the BitKeeper ChangeSet Log
# --------------------------------------------
# 02/04/08      [EMAIL PROTECTED]  1.396
# USB usb-uhci driver
# 
# changed direct access of current->state to set_current_state() call
# 
# Thanks to Paul Komkoff for reminding me of this.
# --------------------------------------------
#
diff -Nru a/drivers/usb/usb-uhci.h b/drivers/usb/usb-uhci.h
--- a/drivers/usb/usb-uhci.h    Mon Apr  8 09:45:27 2002
+++ b/drivers/usb/usb-uhci.h    Mon Apr  8 09:45:27 2002
@@ -11,7 +11,7 @@
 {
        if(!in_interrupt())
        {
-               current->state = TASK_UNINTERRUPTIBLE;
+               set_current_state(TASK_UNINTERRUPTIBLE);
                schedule_timeout(1 + ms * HZ / 1000);
        }
        else

_______________________________________________
[EMAIL PROTECTED]
To unsubscribe, use the last form field at:
https://lists.sourceforge.net/lists/listinfo/linux-usb-devel

Reply via email to