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

Commit d1642ea7 authored by Dmitry Torokhov's avatar Dmitry Torokhov Committed by Mark Brown
Browse files

regulator: core: fix typo in regulator_bulk_disable()



"re-enable" was misspelled as "reename".

Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 3eaeb475
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3661,7 +3661,7 @@ int regulator_bulk_disable(int num_consumers,
	for (++i; i < num_consumers; ++i) {
		r = regulator_enable(consumers[i].consumer);
		if (r != 0)
			pr_err("Failed to reename %s: %d\n",
			pr_err("Failed to re-enable %s: %d\n",
			       consumers[i].supply, r);
	}