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

Commit 0a48843d authored by Michael Ellerman's avatar Michael Ellerman Committed by Benjamin Herrenschmidt
Browse files

powerpc/perf: Use existing out label in power_pmu_enable()



In power_pmu_enable() we can use the existing out label to reduce the
number of return paths.

Signed-off-by: default avatarMichael Ellerman <michael@ellerman.id.au>
CC: <stable@vger.kernel.org> [v3.10]
Signed-off-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
parent 7a7a41f9
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -919,12 +919,13 @@ static void power_pmu_enable(struct pmu *pmu)

	if (!ppmu)
		return;

	local_irq_save(flags);

	cpuhw = &__get_cpu_var(cpu_hw_events);
	if (!cpuhw->disabled) {
		local_irq_restore(flags);
		return;
	}
	if (!cpuhw->disabled)
		goto out;

	cpuhw->disabled = 0;

	/*