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

Commit 5ed2c80b authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "cpu-hotplug: Fix false error message in cpu_up()" into msm-4.9

parents d78ef3b5 657ad054
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -1122,8 +1122,9 @@ static int do_cpu_up(unsigned int cpu, enum cpuhp_state target)

	if (!switch_err) {
		switch_err = switch_to_fair_policy();
		pr_err("Hotplug policy switch err. Task %s pid=%d\n",
					current->comm, current->pid);
		if (switch_err)
			pr_err("Hotplug policy switch err=%d Task %s pid=%d\n",
				switch_err, current->comm, current->pid);
	}

	return err;