mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-08 07:35:04 +00:00
s390/cmm: Removed useless label
Rewrote conditional statement and eliminated the out_kthread label. Signed-off-by: Alexandru Gheorghiu <gheorghiuandru@gmail.com> Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
parent
006485dc48
commit
8fe853f393
1 changed files with 3 additions and 5 deletions
|
@ -458,12 +458,10 @@ static int __init cmm_init(void)
|
||||||
if (rc)
|
if (rc)
|
||||||
goto out_pm;
|
goto out_pm;
|
||||||
cmm_thread_ptr = kthread_run(cmm_thread, NULL, "cmmthread");
|
cmm_thread_ptr = kthread_run(cmm_thread, NULL, "cmmthread");
|
||||||
rc = IS_ERR(cmm_thread_ptr) ? PTR_ERR(cmm_thread_ptr) : 0;
|
if (!IS_ERR(cmm_thread_ptr))
|
||||||
if (rc)
|
return 0;
|
||||||
goto out_kthread;
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
out_kthread:
|
rc = PTR_ERR(cmm_thread_ptr);
|
||||||
unregister_pm_notifier(&cmm_power_notifier);
|
unregister_pm_notifier(&cmm_power_notifier);
|
||||||
out_pm:
|
out_pm:
|
||||||
unregister_oom_notifier(&cmm_oom_nb);
|
unregister_oom_notifier(&cmm_oom_nb);
|
||||||
|
|
Loading…
Add table
Reference in a new issue