Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a004cd42 authored by Thomas Gleixner's avatar Thomas Gleixner
Browse files

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: default avatarThomas Gleixner <tglx@linutronix.de>
parent def01bc5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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