Created
July 15, 2013 06:50
-
-
Save adamrights/5997930 to your computer and use it in GitHub Desktop.
Fix mei_me resume issue in latest 3.10 kernel: http://seife.kernalert.de/blog/2013/07/01/mei-driver-suspend-regression-in-linux-310/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Find out, which device is bound to the driver: | |
find /sys/bus/pci/drivers/mei_me/ -type l|sed 's#^.*/##' | |
0000:00:03.0 | |
#Now unbind (as root): | |
echo 0000:00:03.0 > /sys/bus/pci/drivers/mei_me/unbind | |
#…and your next resume will work better. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment