1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

add reboot fix from #1312

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6563 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd
2007-03-14 01:26:57 +00:00
parent c7a59f885d
commit e7a1c344d4
3 changed files with 13 additions and 2 deletions

View File

@@ -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();
}