https://bugzilla.novell.com/show_bug.cgi?id=652172 https://bugzilla.novell.com/show_bug.cgi?id=652172#c1 --- Comment #1 from gltomasz gltomasz <gltomasz@gmail.com> 2010-11-08 23:34:50 UTC --- Huh, after one year i decided to post a bug, and i found a solution today: All you have to do is to make a file: /etc/pm/sleep.d/20_custom-ehci_hcd and add this: !/bin/sh # File: "/etc/pm/sleep.d/20_custom-ehci_hcd". case "${1}" in hibernate|suspend) # Unbind ehci_hcd for first device 0000:00:1a.7: echo -n "0000:00:1a.7" | tee /sys/bus/pci/drivers/ehci_hcd/unbind # Unbind ehci_hcd for second device 0000:00:1d.7: echo -n "0000:00:1d.7" | tee /sys/bus/pci/drivers/ehci_hcd/unbind ;; resume|thaw) # Bind ehci_hcd for first device 0000:00:1a.7: echo -n "0000:00:1a.7" | tee /sys/bus/pci/drivers/ehci_hcd/bind # Bind ehci_hcd for second device 0000:00:1d.7: echo -n "0000:00:1d.7" | tee /sys/bus/pci/drivers/ehci_hcd/bind ;; esac Now suspend should work. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.