aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/mm/cache.c
diff options
context:
space:
mode:
authorDavid Daney <ddaney@caviumnetworks.com>2010-02-04 15:48:49 -0800
committerRalf Baechle <ralf@linux-mips.org>2010-02-10 22:15:45 +0100
commit63731c964d6cd9de4800891bd33b6f9e47a249bc (patch)
tree32869cf37195162789b1a8d8d6041905539af9a2 /arch/mips/mm/cache.c
parentMIPS: IP27: Make defconfig useful again. (diff)
downloadlinux-dev-63731c964d6cd9de4800891bd33b6f9e47a249bc.tar.xz
linux-dev-63731c964d6cd9de4800891bd33b6f9e47a249bc.zip
MIPS: Fix __devinit __cpuinit confusion in cpu_cache_init
cpu_cache_init and the things it calls should all be __cpuinit instead of __devinit. Signed-off-by: David Daney <ddaney@caviumnetworks.com> To: linux-mips@linux-mips.org Patchwork: http://patchwork.linux-mips.org/patch/938/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to '')
-rw-r--r--arch/mips/mm/cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/mm/cache.c b/arch/mips/mm/cache.c
index 102b2dfa542a..e716cafc346d 100644
--- a/arch/mips/mm/cache.c
+++ b/arch/mips/mm/cache.c
@@ -155,7 +155,7 @@ static inline void setup_protection_map(void)
protection_map[15] = PAGE_SHARED;
}
-void __devinit cpu_cache_init(void)
+void __cpuinit cpu_cache_init(void)
{
if (cpu_has_3k_cache) {
extern void __weak r3k_cache_init(void);