diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-07-01 13:49:20 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-07-01 13:49:20 +0000 |
commit | 69aab5b0cc0bdc5a5fcc28ecec44edad3721fcd7 (patch) | |
tree | e97feeb4f6a84be7af295743bafd7340da114457 /target/linux/brcm63xx/files/arch/mips/bcm63xx | |
parent | 3b0d74bc64ab85ecc187e5fe957521540e970460 (diff) |
[brcm63xx] fixes for the bcm6338 clocks, thanks Maxime
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16640 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/brcm63xx/files/arch/mips/bcm63xx')
-rw-r--r-- | target/linux/brcm63xx/files/arch/mips/bcm63xx/clk.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/target/linux/brcm63xx/files/arch/mips/bcm63xx/clk.c b/target/linux/brcm63xx/files/arch/mips/bcm63xx/clk.c index ce93c30e86..909875d07e 100644 --- a/target/linux/brcm63xx/files/arch/mips/bcm63xx/clk.c +++ b/target/linux/brcm63xx/files/arch/mips/bcm63xx/clk.c @@ -49,7 +49,9 @@ static void enet_misc_set(struct clk *clk, int enable) { u32 mask; - if (BCMCPU_IS_6348()) + if (BCMCPU_IS_6338()) + mask = CKCTL_6338_ENET_EN; + else if (BCMCPU_IS_6348()) mask = CKCTL_6348_ENET_EN; else /* BCMCPU_IS_6358 */ @@ -163,7 +165,9 @@ static void spi_set(struct clk *clk, int enable) { u32 mask; - if (BCMCPU_IS_6348()) + if (BCMCPU_IS_6338()) + mask = CKCTL_6338_SPI_EN; + else if (BCMCPU_IS_6348()) mask = CKCTL_6348_SPI_EN; else /* BCMCPU_IS_6358 */ |