summaryrefslogtreecommitdiffstats
path: root/target/linux/brcm47xx-2.6/files/arch/mips
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2007-03-14 01:26:57 +0000
committerFelix Fietkau <nbd@openwrt.org>2007-03-14 01:26:57 +0000
commit53a5d4131f8971d4f4a32228e78ba1a55a0381c6 (patch)
tree9a65732cf43edf1faebb64ad9a4fd7f632da2282 /target/linux/brcm47xx-2.6/files/arch/mips
parentbf622ab0ae504d01ca9f589b8d67d3902c068133 (diff)
downloadmaster-31e0f0ae-53a5d4131f8971d4f4a32228e78ba1a55a0381c6.tar.gz
master-31e0f0ae-53a5d4131f8971d4f4a32228e78ba1a55a0381c6.tar.bz2
master-31e0f0ae-53a5d4131f8971d4f4a32228e78ba1a55a0381c6.zip
add reboot fix from #1312
SVN-Revision: 6563
Diffstat (limited to 'target/linux/brcm47xx-2.6/files/arch/mips')
-rw-r--r--target/linux/brcm47xx-2.6/files/arch/mips/bcm947xx/setup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/brcm47xx-2.6/files/arch/mips/bcm947xx/setup.c b/target/linux/brcm47xx-2.6/files/arch/mips/bcm947xx/setup.c
index 547c50a737..f7687d4dd1 100644
--- a/target/linux/brcm47xx-2.6/files/arch/mips/bcm947xx/setup.c
+++ b/target/linux/brcm47xx-2.6/files/arch/mips/bcm947xx/setup.c
@@ -54,7 +54,7 @@ static void bcm47xx_machine_restart(char *command)
*/
/* Set the watchdog timer to reset immediately */
-//TODO sb_watchdog(sbh, 1);
+ ssb_chipco_watchdog(&ssb.chipco, 1);
while (1)
cpu_relax();
}
@@ -63,7 +63,7 @@ static void bcm47xx_machine_halt(void)
{
/* Disable interrupts and watchdog and spin forever */
local_irq_disable();
-//TODO sb_watchdog(sbh, 0);
+ ssb_chipco_watchdog(&ssb.chipco, 0);
while (1)
cpu_relax();
}