summarylogtreecommitdiffstats
path: root/aic8800d80-sleep-hook
blob: 917e8f2d0a0279b492960aa4b681d41a3a8f1a1e (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

case "$1" in
  pre)
    /usr/bin/modprobe -r aic8800D80_fdrv >/dev/null 2>&1 || true
    ;;
  post)
    /usr/bin/modprobe aic8800D80_fdrv >/dev/null 2>&1 || true
    ;;
esac