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:
		@@ -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,28 +24,26 @@ 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
 | 
					
 | 
				
			||||||
        	regval=`cat /sys/kernel/debug/ieee80211/$1/ath9k/regval`
 | 
						echo $regidx > /sys/kernel/debug/ieee80211/$1/ath9k/regidx
 | 
				
			||||||
        	regval=$((regval | 0x20000))
 | 
						regval=$(cat /sys/kernel/debug/ieee80211/$1/ath9k/regval)
 | 
				
			||||||
        	echo regval $regval
 | 
						regval=$((regval | 0x20000))
 | 
				
			||||||
    		echo $regval > /sys/kernel/debug/ieee80211/$1/ath9k/regval
 | 
						echo regval $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
 | 
				
			||||||
		wzr-hp-ag300h)
 | 
						wzr-hp-ag300h)
 | 
				
			||||||
			ar922x_disable_gpio_jtag $phyname
 | 
							ar922x_disable_gpio_jtag $phyname
 | 
				
			||||||
			;;
 | 
							;;
 | 
				
			||||||
	esac;
 | 
						esac;
 | 
				
			||||||
fi
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
exit 0
 | 
					exit 0
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user