1
0
Fork 0

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>
hifive-unleashed-5.1
Thomas Gleixner 2009-07-21 09:54:05 +02:00
parent def01bc53d
commit a004cd4218
1 changed files with 1 additions and 1 deletions

View File

@ -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