diff options
author | Chao Xie <xiechao.mail@gmail.com> | 2012-07-31 02:13:13 -0400 |
---|---|---|
committer | Haojian Zhuang <haojian.zhuang@gmail.com> | 2012-08-16 04:16:40 -0400 |
commit | 5cc5815795379690a07d8226fda24ba2fc3f1339 (patch) | |
tree | 4d0abb997786fa5a3e80f2a36ccd31126eb91a06 | |
parent | 38f2e3772429f29a273a2ed7e95dd7a41f662f06 (diff) |
ARM: mmp&dove: modify tauros2_init call
The tauros2_init has argument, change the calling of tauros2_init
to support argument.
Signed-off-by: Chao Xie <xiechao.mail@gmail.com>
Signed-off-by: Haojian Zhuang <haojian.zhuang@gmail.com>
-rw-r--r-- | arch/arm/mach-dove/common.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-mmp/mmp2.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-dove/common.c b/arch/arm/mach-dove/common.c index 4db5de54b6a7..db399dfbe905 100644 --- a/arch/arm/mach-dove/common.c +++ b/arch/arm/mach-dove/common.c | |||
@@ -288,7 +288,7 @@ void __init dove_init(void) | |||
288 | printk(KERN_INFO "TCLK = %dMHz\n", (get_tclk() + 499999) / 1000000); | 288 | printk(KERN_INFO "TCLK = %dMHz\n", (get_tclk() + 499999) / 1000000); |
289 | 289 | ||
290 | #ifdef CONFIG_CACHE_TAUROS2 | 290 | #ifdef CONFIG_CACHE_TAUROS2 |
291 | tauros2_init(); | 291 | tauros2_init(0); |
292 | #endif | 292 | #endif |
293 | dove_setup_cpu_mbus(); | 293 | dove_setup_cpu_mbus(); |
294 | 294 | ||
diff --git a/arch/arm/mach-mmp/mmp2.c b/arch/arm/mach-mmp/mmp2.c index c709a24a9d25..c2bb95cf1a82 100644 --- a/arch/arm/mach-mmp/mmp2.c +++ b/arch/arm/mach-mmp/mmp2.c | |||
@@ -163,7 +163,7 @@ static int __init mmp2_init(void) | |||
163 | { | 163 | { |
164 | if (cpu_is_mmp2()) { | 164 | if (cpu_is_mmp2()) { |
165 | #ifdef CONFIG_CACHE_TAUROS2 | 165 | #ifdef CONFIG_CACHE_TAUROS2 |
166 | tauros2_init(); | 166 | tauros2_init(0); |
167 | #endif | 167 | #endif |
168 | mfp_init_base(MFPR_VIRT_BASE); | 168 | mfp_init_base(MFPR_VIRT_BASE); |
169 | mfp_init_addr(mmp2_addr_map); | 169 | mfp_init_addr(mmp2_addr_map); |