projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
[scripts] getver: don't use "-r COMMITTED" arg which needs network access to the...
[openwrt.git]
/
target
/
linux
/
brcm63xx
/
files
/
arch
/
mips
/
bcm63xx
/
setup.c
diff --git
a/target/linux/brcm63xx/files/arch/mips/bcm63xx/setup.c
b/target/linux/brcm63xx/files/arch/mips/bcm63xx/setup.c
index
95760ae
..
6d1ce64
100644
(file)
--- a/
target/linux/brcm63xx/files/arch/mips/bcm63xx/setup.c
+++ b/
target/linux/brcm63xx/files/arch/mips/bcm63xx/setup.c
@@
-73,7
+73,9
@@
void bcm63xx_machine_reboot(void)
bcm6348_a1_reboot();
printk(KERN_INFO "triggering watchdog soft-reset...\n");
bcm6348_a1_reboot();
printk(KERN_INFO "triggering watchdog soft-reset...\n");
- bcm_perf_writel(SYS_PLL_SOFT_RESET, PERF_SYS_PLL_CTL_REG);
+ reg = bcm_perf_readl(PERF_SYS_PLL_CTL_REG);
+ reg |= SYS_PLL_SOFT_RESET;
+ bcm_perf_writel(reg, PERF_SYS_PLL_CTL_REG);
while (1);
}
while (1);
}
This page took
0.028744 seconds
and
4
git commands to generate.