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

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

Merge "drm/msm/dsi-staging: avoid out of bounds access due to misplaced increment"

parents 07617e96 da66baa9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -111,13 +111,13 @@ static int dsi_pwr_parse_supply_node(struct device_node *root,
			regs->vregs[i].post_off_sleep = tmp;
		}

		++i;
		pr_debug("[%s] minv=%d maxv=%d, en_load=%d, dis_load=%d\n",
			 regs->vregs[i].vreg_name,
			 regs->vregs[i].min_voltage,
			 regs->vregs[i].max_voltage,
			 regs->vregs[i].enable_load,
			 regs->vregs[i].disable_load);
		++i;
	}

error: