Comment 42 for bug 522998

Revision history for this message
Gabou (gabriel-public-3) wrote :

Temporary fix
(Please note the _ in xhci_hcd)

On Ubuntu 10.10

# Be root
sudo su

# Edit this file
vim /etc/pm/sleep.d/05_xhci

Here is the content of this file
------------------------
#!/bin/sh
# Fix some issues with USB3

if [ "$1" = "suspend" ]
then
        modprobe -r xhci_hcd
fi

if [ "$1" = "resume" ]
then
        modprobe xhci_hcd
fi
---------------

# Change access right (not sure it's necessary)
chmod 755 /etc/pm/sleep.d/05_xhci