#!/bin/sh

. /usr/share/pm-utils/functions

case "$1" in
        hibernate|suspend)
                modprobe -r ndiswrapper
                ;;
        *)
                ;;
esac

exit $?
