diff options
author | Paul Mundt <lethal@linux-sh.org> | 2010-04-21 12:01:06 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-04-21 12:01:06 +0900 |
commit | a9079ca0cb15feda15e7a380092e02d5cd834148 (patch) | |
tree | fc47ebb5c005b21aafd1149cab98af09ea247282 /arch/sh/kernel/cpu/sh2a | |
parent | 3bd16668872b5ad0afb22f15ef6c800a8faf7532 (diff) | |
download | linux-a9079ca0cb15feda15e7a380092e02d5cd834148.tar.bz2 |
sh: Tidy CPU probing and fixup section annotations.
This does a detect_cpu_and_cache_system() -> cpu_probe() rename, tidies
up the unused return value, and stuffs it under __cpuinit in preparation
for CPU hotplug.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel/cpu/sh2a')
-rw-r--r-- | arch/sh/kernel/cpu/sh2a/probe.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/sh/kernel/cpu/sh2a/probe.c b/arch/sh/kernel/cpu/sh2a/probe.c index 6825d6507164..48e97a2a0c8d 100644 --- a/arch/sh/kernel/cpu/sh2a/probe.c +++ b/arch/sh/kernel/cpu/sh2a/probe.c @@ -13,7 +13,7 @@ #include <asm/processor.h> #include <asm/cache.h> -int __init detect_cpu_and_cache_system(void) +void __cpuinit cpu_probe(void) { boot_cpu_data.family = CPU_FAMILY_SH2A; @@ -51,6 +51,4 @@ int __init detect_cpu_and_cache_system(void) * on the cache info. */ boot_cpu_data.icache = boot_cpu_data.dcache; - - return 0; } |