ChangeSet 1.1939.1.66, 2004/09/29 16:04:49-07:00, [EMAIL PROTECTED]

[PATCH] usb/kaweth: reorder set_current_state() and schedule_timeout()

Reorder set_current_state() and schedule_timeout() for a
minor cleanup. The reorder allows removing two of the
set_current_state() calls.

Signed-off-by: Greg Kroah-Hartman <[EMAIL PROTECTED]>


 drivers/usb/net/kaweth.c |    4 +---
 1 files changed, 1 insertion(+), 3 deletions(-)


diff -Nru a/drivers/usb/net/kaweth.c b/drivers/usb/net/kaweth.c
--- a/drivers/usb/net/kaweth.c  2004-10-19 08:07:45 -07:00
+++ b/drivers/usb/net/kaweth.c  2004-10-19 08:07:45 -07:00
@@ -1250,13 +1250,11 @@
                 return status;
         }
 
-       set_current_state(TASK_UNINTERRUPTIBLE);
        while (timeout && !awd.done) {
-               timeout = schedule_timeout(timeout);
                set_current_state(TASK_UNINTERRUPTIBLE);
+               timeout = schedule_timeout(timeout);
        }
 
-        set_current_state(TASK_RUNNING);
         remove_wait_queue(&awd.wqh, &wait);
 
         if (!timeout) {



-------------------------------------------------------
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
_______________________________________________
[EMAIL PROTECTED]
To unsubscribe, use the last form field at:
https://lists.sourceforge.net/lists/listinfo/linux-usb-devel

Reply via email to