Messages in this thread Patch in this message |  | | Date | Wed, 29 Nov 2000 21:54:50 -0800 | From | Greg KH <> | Subject | Re: [linux-usb-devel] Re: test12-pre3 (broke my usb) |
| |
> > Nov 29 17:12:14 sasami kernel: usb_control/bulk_msg: timeout > > Nov 29 17:12:14 sasami kernel: usb.c: USB device not accepting new address=6 (error=-110)
This message is now showing up for a lot of people. I think we need to change the source to have it say what is really happening:
diff -Naur -X dontdiff linux-2.4.0-test11/drivers/usb/usb.c linux-2.4.0-test11-greg/drivers/usb/usb.c --- linux-2.4.0-test11/drivers/usb/usb.c Fri Nov 24 16:19:36 2000 +++ linux-2.4.0-test11-greg/drivers/usb/usb.c Wed Nov 29 21:55:38 2000 @@ -2008,7 +2008,8 @@ err = usb_set_address(dev); if (err < 0) { - err("USB device not accepting new address=%d (error=%d)", + err("USB device not accepting new address=%d (error=%d), " + "host controller probably not getting any interrupts", dev->devnum, err); clear_bit(dev->devnum, &dev->bus->devmap.devicemap); dev->devnum = -1;
greg k-h
-- greg@(kroah|wirex).com - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/
|  |