brcm47xx: whitespace cleanups

SVN-Revision: 34329
owl
Hauke Mehrtens 2012-11-25 14:03:51 +00:00
parent 203cbbd51d
commit aa8e887a46
7 changed files with 7 additions and 16 deletions

View File

@ -5,5 +5,3 @@ init_hotplug_failsafe() {
} }
boot_hook_add preinit_main init_hotplug_failsafe boot_hook_add preinit_main init_hotplug_failsafe

View File

@ -28,7 +28,7 @@ check_module () {
init_iface() { init_iface() {
check_module tg3 check_module tg3
insmod switch-core insmod switch-core
check_module switch-robo || check_module switch-adm || { check_module switch-robo || check_module switch-adm || {
check_module bcm57xx activate_gpio=0x4 && cpu_port="8u*" check_module bcm57xx activate_gpio=0x4 && cpu_port="8u*"
} || rmmod switch-core } || rmmod switch-core
} }

View File

@ -5,4 +5,3 @@ enable_reset_button() {
} }
boot_hook_add preinit_main enable_reset_button boot_hook_add preinit_main enable_reset_button

View File

@ -5,11 +5,10 @@ failsafe_ip() {
ifconfig eth0 0.0.0.0 down ifconfig eth0 0.0.0.0 down
echo "0 1 2 3 4 ${cpu_port:-5u*}" > /proc/switch/eth0/vlan/0/ports echo "0 1 2 3 4 ${cpu_port:-5u*}" > /proc/switch/eth0/vlan/0/ports
} }
[ -n "$pi_ifname" ] && grep -q "$pi_ifname" /proc/net/dev && { [ -n "$pi_ifname" ] && grep -q "$pi_ifname" /proc/net/dev && {
ifconfig $pi_ifname $pi_ip netmask $pi_netmask broadcast $pi_broadcast up ifconfig $pi_ifname $pi_ip netmask $pi_netmask broadcast $pi_broadcast up
} }
} }
boot_hook_add failsafe failsafe_ip boot_hook_add failsafe failsafe_ip

View File

@ -3,4 +3,3 @@
do_mount_procfs() { do_mount_procfs() {
mount none /proc -t proc mount none /proc -t proc
} }

View File

@ -2,7 +2,7 @@
port_net_echo() { port_net_echo() {
[ -n "$pi_ifname" ] && grep -q "$pi_ifname" /proc/net/dev && { [ -n "$pi_ifname" ] && grep -q "$pi_ifname" /proc/net/dev && {
if [ "$pi_preinit_net_messages" = "y" ] || [ "$pi_failsafe_net_message" = "true" ] && [ "$pi_preinit_no_failsafe_netmsg" != "y" ]; then if [ "$pi_preinit_net_messages" = "y" ] || [ "$pi_failsafe_net_message" = "true" ] && [ "$pi_preinit_no_failsafe_netmsg" != "y" ]; then
netmsg $pi_broadcast "$1" netmsg $pi_broadcast "$1"
fi fi
} }
@ -20,7 +20,7 @@ preinit_ip_deconfig() {
preinit_net_echo() { preinit_net_echo() {
preinit_ip preinit_ip
[ -d /proc/switch/eth0 ] && [ "$pi_ifname" = "eth0" ] && { [ -d /proc/switch/eth0 ] && [ "$pi_ifname" = "eth0" ] && {
echo 1 > /proc/switch/eth0/reset echo 1 > /proc/switch/eth0/reset
@ -30,10 +30,8 @@ preinit_net_echo() {
echo "$port ${cpu_port:-5u*}" > /proc/switch/eth0/vlan/0/ports echo "$port ${cpu_port:-5u*}" > /proc/switch/eth0/vlan/0/ports
port_net_echo $1 port_net_echo $1
}; done }; done
echo "0 1 2 3 4 ${cpu_port:-5u*}" > /proc/switch/eth0/vlan/0/ports echo "0 1 2 3 4 ${cpu_port:-5u*}" > /proc/switch/eth0/vlan/0/ports
} || port_net_echo $1 } || port_net_echo $1
} }

View File

@ -8,5 +8,3 @@ indicate_failsafe() {
preinit_net_echo "Entering Failsafe!\n" preinit_net_echo "Entering Failsafe!\n"
indicate_failsafe_led indicate_failsafe_led
} }