summaryrefslogtreecommitdiff
path: root/packages/apmd/files/50-tmio-ohci-unbind
diff options
context:
space:
mode:
Diffstat (limited to 'packages/apmd/files/50-tmio-ohci-unbind')
-rw-r--r--packages/apmd/files/50-tmio-ohci-unbind19
1 files changed, 0 insertions, 19 deletions
diff --git a/packages/apmd/files/50-tmio-ohci-unbind b/packages/apmd/files/50-tmio-ohci-unbind
deleted file mode 100644
index f65e0b37d3..0000000000
--- a/packages/apmd/files/50-tmio-ohci-unbind
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-
-TOPATH=/sys/bus/platform/drivers/tmio-ohci
-
-case "$1" in
- suspend)
- if [ -d $TOPATH ]
- then
- echo -n tmio-ohci > $TOPATH/unbind
- fi
- ;;
- resume)
- if [ -d $TOPATH ]
- then
- echo -n tmio-ohci > $TOPATH/bind
- fi
- ;;
-esac
-