summarylogtreecommitdiffstats
path: root/vtunerc-driver_kmod
diff options
context:
space:
mode:
Diffstat (limited to 'vtunerc-driver_kmod')
-rwxr-xr-xvtunerc-driver_kmod6
1 files changed, 3 insertions, 3 deletions
diff --git a/vtunerc-driver_kmod b/vtunerc-driver_kmod
index 46de6bdc9a7e..0a9578174ce7 100755
--- a/vtunerc-driver_kmod
+++ b/vtunerc-driver_kmod
@@ -1,7 +1,7 @@
#!/usr/bin/bash
load() {
- if [ `lsmod | grep -c vtunerc` -eq 0 ]; then
+ if [ $(lsmod | grep -c vtunerc) -eq 0 ]; then
modprobe vtunerc
fi
}
@@ -14,9 +14,9 @@ unload() {
case "$1" in
load)
- load
+ load
;;
unload)
- unload
+ unload
;;
esac