Rogério:

>From the log you collected, it's clear that Windows initializes each port
of your internal hub twice!  Don't ask me why.  Maybe that's what the
Linux driver needs to do.

Anyway, let's start off small.  Here's a diagnostic patch for you to try.  
This won't fix anything, but it will print out some additional information
in your system log about where the problem may be occurring.  Be sure to 
leave usb debugging configured on and post the dmesg log messages you get 
when you run this on your desktop system.

Alan Stern


--- 2.6/drivers/usb/core/hub.c.orig     Fri Dec 19 10:55:07 2003
+++ 2.6/drivers/usb/core/hub.c  Sun Dec 28 14:51:21 2003
@@ -1064,6 +1064,8 @@
 
                for (i = 0; i < hub->descriptor->bNbrPorts; i++) {
                        ret = hub_port_status(dev, i, &portstatus, &portchange);
+dev_info(hubdev(dev), "port %d ret %d status %x change %x\n",
+i+1, ret, portstatus, portchange);
                        if (ret < 0) {
                                continue;
                        }



-------------------------------------------------------
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&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