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

Commit 3127692d authored by Nicholas Piggin's avatar Nicholas Piggin Committed by Michael Ellerman
Browse files

powernv/cpuidle: Fix idle states all being marked invalid



Commit 9c7b185a ("powernv/cpuidle: Parse dt idle properties into
global structure") parses dt idle states into structs, but never marks
them valid. This results in all idle states being lost.

Fixes: 9c7b185a ("powernv/cpuidle: Parse dt idle properties into global structure")
Signed-off-by: default avatarNicholas Piggin <npiggin@gmail.com>
Acked-by: default avatarAkshay Adiga <akshay.adiga@linux.vnet.ibm.com>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent b87b9cf4
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -651,11 +651,12 @@ static int __init pnv_power9_idle_init(void)
					      &state->psscr_mask,
					      state->flags);
		if (err) {
			state->valid = false;
			report_invalid_psscr_val(state->psscr_val, err);
			continue;
		}

		state->valid = true;

		if (max_residency_ns < state->residency_ns) {
			max_residency_ns = state->residency_ns;
			pnv_deepest_stop_psscr_val = state->psscr_val;