diff options
Diffstat (limited to 'arch/arm/mm/cache-feroceon-l2.c')
-rw-r--r-- | arch/arm/mm/cache-feroceon-l2.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mm/cache-feroceon-l2.c b/arch/arm/mm/cache-feroceon-l2.c index e028a7f2ebcc..097181e08c25 100644 --- a/arch/arm/mm/cache-feroceon-l2.c +++ b/arch/arm/mm/cache-feroceon-l2.c | |||
@@ -313,7 +313,7 @@ static void __init disable_l2_prefetch(void) | |||
313 | */ | 313 | */ |
314 | u = read_extra_features(); | 314 | u = read_extra_features(); |
315 | if (!(u & 0x01000000)) { | 315 | if (!(u & 0x01000000)) { |
316 | printk(KERN_INFO "Feroceon L2: Disabling L2 prefetch.\n"); | 316 | pr_info("Feroceon L2: Disabling L2 prefetch.\n"); |
317 | write_extra_features(u | 0x01000000); | 317 | write_extra_features(u | 0x01000000); |
318 | } | 318 | } |
319 | } | 319 | } |
@@ -326,7 +326,7 @@ static void __init enable_l2(void) | |||
326 | if (!(u & 0x00400000)) { | 326 | if (!(u & 0x00400000)) { |
327 | int i, d; | 327 | int i, d; |
328 | 328 | ||
329 | printk(KERN_INFO "Feroceon L2: Enabling L2\n"); | 329 | pr_info("Feroceon L2: Enabling L2\n"); |
330 | 330 | ||
331 | d = flush_and_disable_dcache(); | 331 | d = flush_and_disable_dcache(); |
332 | i = invalidate_and_disable_icache(); | 332 | i = invalidate_and_disable_icache(); |
@@ -353,7 +353,7 @@ void __init feroceon_l2_init(int __l2_wt_override) | |||
353 | 353 | ||
354 | enable_l2(); | 354 | enable_l2(); |
355 | 355 | ||
356 | printk(KERN_INFO "Feroceon L2: Cache support initialised%s.\n", | 356 | pr_info("Feroceon L2: Cache support initialised%s.\n", |
357 | l2_wt_override ? ", in WT override mode" : ""); | 357 | l2_wt_override ? ", in WT override mode" : ""); |
358 | } | 358 | } |
359 | #ifdef CONFIG_OF | 359 | #ifdef CONFIG_OF |