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

Commit aefa7dcc authored by David Collins's avatar David Collins
Browse files

regulator: cpr3-regulator: correct sdelta table indexing



Correct the index calculation used when printing the sdelta
adjustment table.

Change-Id: Ieaf46199f2b440206fd3442d614cf97f3f3728ea
CRs-Fixed: 1089098
Signed-off-by: default avatarDavid Collins <collinsd@codeaurora.org>
parent 3162449f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1851,7 +1851,7 @@ static int cpr4_load_core_and_temp_adj(struct cpr3_regulator *vreg,
	for (i = 0; i < sdelta->max_core_count; i++) {
		for (j = 0, pos = 0; j < sdelta->temp_band_count; j++)
			pos += scnprintf(buf + pos, buflen - pos, " %u",
			 sdelta->table[i * sdelta->max_core_count + j]);
			 sdelta->table[i * sdelta->temp_band_count + j]);
		cpr3_debug(vreg, "sdelta[%d]:%s\n", i, buf);
	}