# 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.569   -> 1.570  
#	  drivers/usb/uhci.c	1.31    -> 1.32   
#
# The following is the BitKeeper ChangeSet Log
# --------------------------------------------
# 02/03/28	greg@kroah.com	1.570
# USB uhci bug fix.
# 
# use proper GFP flag setting for submitting a urb.
# --------------------------------------------
#
diff -Nru a/drivers/usb/uhci.c b/drivers/usb/uhci.c
--- a/drivers/usb/uhci.c	Wed Apr  3 16:39:23 2002
+++ b/drivers/usb/uhci.c	Wed Apr  3 16:39:23 2002
@@ -2386,7 +2386,7 @@
 	} else {
 		if (is_ring && !killed) {
 			urb->dev = dev;
-			uhci_submit_urb(urb, GFP_KERNEL);
+			uhci_submit_urb(urb, GFP_ATOMIC);
 		} else {
 			/* We decrement the usage count after we're done */
 			/*  with everything */
