diff options
author | Anton Blanchard <anton@samba.org> | 2006-03-28 14:08:39 +1100 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-03-28 16:45:34 +1100 |
commit | 69ed3324983bb937d78a8579ed91b90242ee5aaa (patch) | |
tree | 9565376cb542b8128e38a949f592881e489dcd60 /arch/powerpc/kernel/sysfs.c | |
parent | 9fe901d124871f5781b9c4ccbb7ff93fdff9d39e (diff) | |
download | blackbird-op-linux-69ed3324983bb937d78a8579ed91b90242ee5aaa.tar.gz blackbird-op-linux-69ed3324983bb937d78a8579ed91b90242ee5aaa.zip |
[PATCH] powerpc: Fix some initcall return values
Non zero initcalls (except for -ENODEV) have started warning at boot.
Fix smt_setup and init_ras_IRQ.
Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/kernel/sysfs.c')
-rw-r--r-- | arch/powerpc/kernel/sysfs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/powerpc/kernel/sysfs.c b/arch/powerpc/kernel/sysfs.c index 0f0c3a9ae2e5..aca2f09cd842 100644 --- a/arch/powerpc/kernel/sysfs.c +++ b/arch/powerpc/kernel/sysfs.c @@ -65,11 +65,11 @@ static int __init smt_setup(void) unsigned int cpu; if (!cpu_has_feature(CPU_FTR_SMT)) - return 1; + return -ENODEV; options = find_path_device("/options"); if (!options) - return 1; + return -ENODEV; val = (unsigned int *)get_property(options, "ibm,smt-snooze-delay", NULL); @@ -78,7 +78,7 @@ static int __init smt_setup(void) per_cpu(smt_snooze_delay, cpu) = *val; } - return 1; + return 0; } __initcall(smt_setup); |