aboutsummaryrefslogtreecommitdiff
path: root/kernel/sched.c
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2009-07-21 09:54:05 +0200
committerThomas Gleixner <tglx@linutronix.de>2009-07-24 09:41:35 +0200
commita004cd42181409eda70804ded240a791f4564d61 (patch)
treedda56f65f1fc420ec9aadfaed2f18695a30c5d3c /kernel/sched.c
parentdef01bc53d03881acfc393bd10a5c7575187e008 (diff)
sched: Fix return value of migration_init()
migration_init() returns the return value of the hotplug notifier. In the success case this is NOTIFY_OK which is 1. initcall_debug evaluates that as an error code because init calls are expected to return 0 on success. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/sched.c')
-rw-r--r--kernel/sched.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/sched.c b/kernel/sched.c
index 1f7919add8a..953f037dc05 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -7654,7 +7654,7 @@ static int __init migration_init(void)
migration_call(&migration_notifier, CPU_ONLINE, cpu);
register_cpu_notifier(&migration_notifier);
- return err;
+ return 0;
}
early_initcall(migration_init);
#endif