Comment 80 for bug 1265544

Revision history for this message
Aurélien MANCA (aurelien-manca) wrote :

Ok, I will send it on my next reboot.

For information, I was unable to suspend the laptop because it was awakening some seconds later.
I made it working by using the following script (/etc/pm/sleep.d/20_zenbook) :

case "${1}" in
    hibernate|suspend)
 # Unbind ehci_hcd for first device 0000:00:14.0:
        echo -n "0000:00:14.0" | tee /sys/bus/pci/drivers/xhci_hcd/unbind
        ;;
    resume|thaw)
        # Bind ehci_hcd for first device 0000:00:14.0:
        echo -n "0000:00:14.0" | tee /sys/bus/pci/drivers/xhci_hcd/bind
        ;;
esac