ar71xx: base-files: cleanups in 10-ar922x-led-fix
Fix code style, indentation and leading/trailing whitespaces in: /etc/hotplug.d/net/10-ar922x-led-fix Signed-off-by: Piotr Dymacz <pepe2k@gmail.com>
This commit is contained in:
parent
b73cb365d5
commit
a41f38e61d
@ -9,12 +9,12 @@
|
|||||||
# Manipulate the $DEVPATH to reach the corresponding phyN.
|
# Manipulate the $DEVPATH to reach the corresponding phyN.
|
||||||
#
|
#
|
||||||
|
|
||||||
devdir=`dirname $DEVPATH`
|
devdir=$(dirname $DEVPATH)
|
||||||
devdir=`dirname $devdir`
|
devdir=$(dirname $devdir)
|
||||||
phydir=/sys$devdir/ieee80211
|
phydir=/sys$devdir/ieee80211
|
||||||
phyname=`cat $phydir/phy*/name`
|
phyname=$(cat $phydir/phy*/name)
|
||||||
|
|
||||||
if [ -z $phyname -o $ACTION != "add" ]; then exit 0; fi
|
[ -z $phyname -o $ACTION != "add" ] && exit 0
|
||||||
|
|
||||||
#
|
#
|
||||||
# ar922x_disable_gpio_jtag():
|
# ar922x_disable_gpio_jtag():
|
||||||
@ -24,21 +24,19 @@ if [ -z $phyname -o $ACTION != "add" ]; then exit 0; fi
|
|||||||
# for AR9220 and AR9223.
|
# for AR9220 and AR9223.
|
||||||
#
|
#
|
||||||
|
|
||||||
ar922x_disable_gpio_jtag()
|
ar922x_disable_gpio_jtag() {
|
||||||
{
|
|
||||||
local regidx=0x4054
|
local regidx=0x4054
|
||||||
|
|
||||||
[ -f /sys/kernel/debug/ieee80211/$1/ath9k/regidx ] && {
|
[ -f /sys/kernel/debug/ieee80211/$1/ath9k/regidx ] || return
|
||||||
|
|
||||||
echo $regidx > /sys/kernel/debug/ieee80211/$1/ath9k/regidx
|
echo $regidx > /sys/kernel/debug/ieee80211/$1/ath9k/regidx
|
||||||
regval=`cat /sys/kernel/debug/ieee80211/$1/ath9k/regval`
|
regval=$(cat /sys/kernel/debug/ieee80211/$1/ath9k/regval)
|
||||||
regval=$((regval | 0x20000))
|
regval=$((regval | 0x20000))
|
||||||
echo regval $regval
|
echo regval $regval
|
||||||
echo $regval > /sys/kernel/debug/ieee80211/$1/ath9k/regval
|
echo $regval > /sys/kernel/debug/ieee80211/$1/ath9k/regval
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if [ $phyname -a $ACTION = "add" ]; then
|
[ $phyname -a $ACTION = "add" ] && {
|
||||||
|
|
||||||
. /lib/ar71xx.sh
|
. /lib/ar71xx.sh
|
||||||
|
|
||||||
case $(ar71xx_board_name) in
|
case $(ar71xx_board_name) in
|
||||||
@ -46,6 +44,6 @@ if [ $phyname -a $ACTION = "add" ]; then
|
|||||||
ar922x_disable_gpio_jtag $phyname
|
ar922x_disable_gpio_jtag $phyname
|
||||||
;;
|
;;
|
||||||
esac;
|
esac;
|
||||||
fi
|
}
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
Loading…
Reference in New Issue
Block a user