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

Commit e5b16746 authored by Srivatsa S. Bhat's avatar Srivatsa S. Bhat Committed by Rafael J. Wysocki
Browse files

PM / Hibernate: Replace unintuitive 'if' condition in kernel/power/user.c with 'else'



In the snapshot_ioctl() function, under SNAPSHOT_FREEZE, the code below
freeze_processes() is a bit unintuitive. Improve it by replacing the
second 'if' condition with an 'else' clause.

Signed-off-by: default avatarSrivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
Signed-off-by: default avatarRafael J. Wysocki <rjw@sisk.pl>
parent 2e8e89e3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -259,7 +259,7 @@ static long snapshot_ioctl(struct file *filp, unsigned int cmd,
		error = freeze_processes();
		if (error)
			usermodehelper_enable();
		if (!error)
		else
			data->frozen = 1;
		break;