diff options
author | Yoichi Yuasa <yuasa@linux-mips.org> | 2012-08-01 02:39:52 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2012-08-01 11:59:06 -0400 |
commit | 3e82eeebad58a8bd9d263236ead0a0734e752792 (patch) | |
tree | a0256c43fb4aa7bfcfcdc6ac12591afd0db0edd4 | |
parent | 8551fb643ad6fe07f16d0825c8b6d99246024b9a (diff) |
MIPS: BCM63xx: Fix redefinition of clk_* by adding select HAVE_CLK
arch/mips/bcm63xx/clk.c:249:5: error: redefinition of 'clk_enable'
include/linux/clk.h:295:19: note: previous definition of 'clk_enable' was here
arch/mips/bcm63xx/clk.c:259:6: error: redefinition of 'clk_disable'
include/linux/clk.h:300:20: note: previous definition of 'clk_disable' was here
arch/mips/bcm63xx/clk.c:268:15: error: redefinition of 'clk_get_rate'
include/linux/clk.h:302:29: note: previous definition of 'clk_get_rate' was here
arch/mips/bcm63xx/clk.c:275:13: error: redefinition of 'clk_get'
include/linux/clk.h:281:27: note: previous definition of 'clk_get' was here
arch/mips/bcm63xx/clk.c:302:6: error: redefinition of 'clk_put'
include/linux/clk.h:291:20: note: previous definition of 'clk_put' was here
make[2]: *** [arch/mips/bcm63xx/clk.o] Error 1
Signed-off-by: Yoichi Yuasa <yuasa@linux-mips.org>
Cc: linux-mips@linux-mips.org
Reviewed-by: John Crispin <blogic@openwrt.org>
Patchwork: https://patchwork.linux-mips.org/patch/4141/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index 45fdad419d82..331d574df99c 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig | |||
@@ -125,6 +125,7 @@ config BCM63XX | |||
125 | select SYS_HAS_EARLY_PRINTK | 125 | select SYS_HAS_EARLY_PRINTK |
126 | select SWAP_IO_SPACE | 126 | select SWAP_IO_SPACE |
127 | select ARCH_REQUIRE_GPIOLIB | 127 | select ARCH_REQUIRE_GPIOLIB |
128 | select HAVE_CLK | ||
128 | help | 129 | help |
129 | Support for BCM63XX based boards | 130 | Support for BCM63XX based boards |
130 | 131 | ||