Comment 12 for bug 1786574

Revision history for this message
AaronMa (mapengyu) wrote :

Resume issue should be fixed by kernel driver or other WA than blacklist a kernel module.

If the nc6000 issue is still happened on current kernel, please use the following systemd script to fix it.

/lib/systemd/system-sleep/i2c-i801-reload.sh
#!/bin/sh
case $1 in
  pre)
    modprobe -r i2c-i801
    ;;
  post)
    modprobe i2c-i801
    ;;
esac

%sudo chmod a+x /lib/systemd/system-sleep/i2c-i801-reload.sh