diff -Nru a/drivers/usb/host/ohci-q.c b/drivers/usb/host/ohci-q.c
--- a/drivers/usb/host/ohci-q.c Wed Feb 11 11:42:39 2004
+++ b/drivers/usb/host/ohci-q.c Wed Feb 11 11:42:39 2004
@@ -375,7 +375,7 @@
        if (!(ed = dev->ep [ep])) {
                struct td       *td;
 
-               ed = ed_alloc (ohci, SLAB_ATOMIC);
+               ed = ed_alloc (ohci, GFP_ATOMIC);
                if (!ed) {
                        /* out of memory */
                        goto done;
@@ -383,7 +383,7 @@
                dev->ep [ep] = ed;
 
                /* dummy td; end of td list for ed */
-               td = td_alloc (ohci, SLAB_ATOMIC);
+               td = td_alloc (ohci, GFP_ATOMIC);
                if (!td) {
                        /* out of memory */
                        ed_free (ohci, ed);


-------------------------------------------------------
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click
_______________________________________________
[EMAIL PROTECTED]
To unsubscribe, use the last form field at:
https://lists.sourceforge.net/lists/listinfo/linux-usb-devel

Reply via email to