summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-power/pm-utils/files/sleep.d/50unload_alx')
-rw-r--r--sys-power/pm-utils/files/sleep.d/50unload_alx18
1 files changed, 0 insertions, 18 deletions
diff --git a/sys-power/pm-utils/files/sleep.d/50unload_alx b/sys-power/pm-utils/files/sleep.d/50unload_alx
deleted file mode 100644
index 6d352c50f7c0..000000000000
--- a/sys-power/pm-utils/files/sleep.d/50unload_alx
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-
-# 50unload_alx: unload the alx module during suspend (LP #1173952)
-
-[ -d /sys/module/alx ] || exit 0
-
-. "${PM_FUNCTIONS}"
-
-case "$1" in
- suspend)
- echo "Unloading alx kernel module ..."
- modunload alx && echo Done. || echo Failed.
- ;;
- resume)
- echo "Reloading alx kernel module ..."
- ;;
-esac
-exit 0