projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
[brcm63xx] add infrastructure to register gpio-input reset button
[openwrt.git]
/
target
/
linux
/
brcm63xx
/
files
/
arch
/
mips
/
bcm63xx
/
clk.c
diff --git
a/target/linux/brcm63xx/files/arch/mips/bcm63xx/clk.c
b/target/linux/brcm63xx/files/arch/mips/bcm63xx/clk.c
index
909875d
..
eaf6196
100644
(file)
--- a/
target/linux/brcm63xx/files/arch/mips/bcm63xx/clk.c
+++ b/
target/linux/brcm63xx/files/arch/mips/bcm63xx/clk.c
@@
-51,6
+51,8
@@
static void enet_misc_set(struct clk *clk, int enable)
if (BCMCPU_IS_6338())
mask = CKCTL_6338_ENET_EN;
if (BCMCPU_IS_6338())
mask = CKCTL_6338_ENET_EN;
+ else if (BCMCPU_IS_6345())
+ mask = CKCTL_6345_ENET_EN;
else if (BCMCPU_IS_6348())
mask = CKCTL_6348_ENET_EN;
else
else if (BCMCPU_IS_6348())
mask = CKCTL_6348_ENET_EN;
else
@@
-147,6
+149,7
@@
static void usbs_set(struct clk *clk, int enable)
switch(bcm63xx_get_cpu_id()) {
case BCM6338_CPU_ID: mask = CKCTL_6338_USBS_EN; break;
switch(bcm63xx_get_cpu_id()) {
case BCM6338_CPU_ID: mask = CKCTL_6338_USBS_EN; break;
+ case BCM6345_CPU_ID: mask = CKCTL_6345_USBS_EN; break;
case BCM6348_CPU_ID: mask = CKCTL_6348_USBS_EN; break;
default:
return;
case BCM6348_CPU_ID: mask = CKCTL_6348_USBS_EN; break;
default:
return;
This page took
0.01979 seconds
and
4
git commands to generate.