diff options
author | Michal Simek <monstr@monstr.eu> | 2010-01-12 08:51:04 -0500 |
---|---|---|
committer | Michal Simek <monstr@monstr.eu> | 2010-03-11 08:07:57 -0500 |
commit | 407c1da07d5afa001ed0fdb8f379c00bbd09990a (patch) | |
tree | 43421994f3e384d74b44bce71dd74af14102031f /arch/microblaze/kernel/cpu | |
parent | 777537905744c28b02c283692e7f75f5445c1afa (diff) |
microblaze: Move cache function to cache.c
It is better to have init cache handling on one place.
Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'arch/microblaze/kernel/cpu')
-rw-r--r-- | arch/microblaze/kernel/cpu/cache.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/microblaze/kernel/cpu/cache.c b/arch/microblaze/kernel/cpu/cache.c index 2a56bccce4e0..5425f89335ed 100644 --- a/arch/microblaze/kernel/cpu/cache.c +++ b/arch/microblaze/kernel/cpu/cache.c | |||
@@ -532,4 +532,9 @@ void microblaze_cache_init(void) | |||
532 | } | 532 | } |
533 | } | 533 | } |
534 | } | 534 | } |
535 | invalidate_dcache(); | ||
536 | enable_dcache(); | ||
537 | |||
538 | invalidate_icache(); | ||
539 | enable_icache(); | ||
535 | } | 540 | } |