I'm running Fedora 8 (with all current updates) on an HP Pavillion computer.
When the ehci-hcd.ko module is loaded (at boot) it fills my /var/log/messages with:
Jan 4 11:52:15 localhost kernel: usb 1-4: new high speed USB device using ehci_hcd and address 58
Jan 4 11:52:15 localhost kernel: usb 1-4: new high speed USB device using ehci_hcd and address 59
Jan 4 11:52:15 localhost kernel: usb 1-4: new high speed USB device using ehci_hcd and address 60
Jan 4 11:52:15 localhost kernel: usb 1-4: new high speed USB device using ehci_hcd and address 61
Jan 4 11:52:16 localhost kernel: usb 1-4: new high speed USB device using ehci_hcd and address 62
Jan 4 11:52:16 localhost kernel: usb 1-4: new high speed USB device using ehci_hcd and address 63
Jan 4 11:52:16 localhost kernel: usb 1-4: new high speed USB device using ehci_hcd and address 64
Jan 4 11:52:17 localhost kernel: usb 1-4: new high speed USB device using ehci_hcd and address 65
Jan 4 11:52:17 localhost kernel: usb 1-4: new high speed USB device using ehci_hcd and address 66
Jan 4 11:52:17 localhost kernel: usb 1-4: new high speed USB device using ehci_hcd and address 67
Jan 4 11:52:17 localhost kernel: usb 1-4: new high speed USB device using ehci_hcd and address 68
4 lines every second.
In order to stop this I had to remove the module from corresponding initrd img:
. mkdir /tmp/initrd
. cd /tmp/initrd
. gunzip < /boot/initrd-2.6.23.9-85.fc8.img | cpio -i --make-directories
. rm lib/ehci-hcd.ko
. find . | cpio -o -c | gzip -9 > /boot/initrd-2.6.23.9-85mw.fc8.img
. chmod go-rwx /boot/initrd-2.6.23.9-85mw.fc8.img
- rename /lib/modules/2/6/23/9-85.fc8/kernel/drivers/usb/ehci-hcd.ko
so that it won't reload
This seems to fix the problem, but I imagine I'm going to want a working ehci-hcd.ko at some point.
Does anyone have a clue about what is going wrong or how to make ehci-hcd.ko work proplerly?
Thanks,
- Mike