diff options
author | Florian Fainelli <florian@openwrt.org> | 2012-07-04 10:58:30 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2012-07-23 08:54:32 -0400 |
commit | 19372b24780868dc7cb983c4aaa8b796273bd4b6 (patch) | |
tree | d06c2f19d30ddb3b133202a7f966c11f859a4767 | |
parent | 9e368e49dadc90e9105d43d8875aaf1bfd268196 (diff) |
MIPS: BCM63xx: Add BCM6368 SPI clock mask
Signed-off-by: Florian Fainelli <florian@openwrt.org>
Cc: linux-mips@linux-mips.org
Cc: grant.likely@secretlab.ca
Cc: spi-devel-general@lists.sourceforge.net
Patchwork: https://patchwork.linux-mips.org/patch/3319/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/bcm63xx/clk.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/mips/bcm63xx/clk.c b/arch/mips/bcm63xx/clk.c index 8d2ea223f102..be49b9a13a93 100644 --- a/arch/mips/bcm63xx/clk.c +++ b/arch/mips/bcm63xx/clk.c | |||
@@ -181,9 +181,11 @@ static void spi_set(struct clk *clk, int enable) | |||
181 | mask = CKCTL_6338_SPI_EN; | 181 | mask = CKCTL_6338_SPI_EN; |
182 | else if (BCMCPU_IS_6348()) | 182 | else if (BCMCPU_IS_6348()) |
183 | mask = CKCTL_6348_SPI_EN; | 183 | mask = CKCTL_6348_SPI_EN; |
184 | else | 184 | else if (BCMCPU_IS_6358()) |
185 | /* BCMCPU_IS_6358 */ | ||
186 | mask = CKCTL_6358_SPI_EN; | 185 | mask = CKCTL_6358_SPI_EN; |
186 | else | ||
187 | /* BCMCPU_IS_6368 */ | ||
188 | mask = CKCTL_6368_SPI_EN; | ||
187 | bcm_hwclock_set(mask, enable); | 189 | bcm_hwclock_set(mask, enable); |
188 | } | 190 | } |
189 | 191 | ||