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

Commit 8fe853f3 authored by Alexandru Gheorghiu's avatar Alexandru Gheorghiu Committed by Martin Schwidefsky
Browse files

s390/cmm: Removed useless label



Rewrote conditional statement and eliminated the out_kthread label.

Signed-off-by: default avatarAlexandru Gheorghiu <gheorghiuandru@gmail.com>
Signed-off-by: default avatarHeiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent 006485dc
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
@@ -458,12 +458,10 @@ static int __init cmm_init(void)
	if (rc)
		goto out_pm;
	cmm_thread_ptr = kthread_run(cmm_thread, NULL, "cmmthread");
	rc = IS_ERR(cmm_thread_ptr) ? PTR_ERR(cmm_thread_ptr) : 0;
	if (rc)
		goto out_kthread;
	if (!IS_ERR(cmm_thread_ptr))
		return 0;

out_kthread:
	rc = PTR_ERR(cmm_thread_ptr);
	unregister_pm_notifier(&cmm_power_notifier);
out_pm:
	unregister_oom_notifier(&cmm_oom_nb);