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

Commit 92311c3c authored by Mark Brown's avatar Mark Brown Committed by Anton Vorontsov
Browse files

pda_power: Complain if regulator operations fail



Rather than silently ignoring errors from the regulator enable and disable
add a WARN_ON() - it's probably pretty important if we're not getting
power, though it should be vanishingly unlikely in production.

Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: default avatarAnton Vorontsov <cbouatmailru@gmail.com>
parent 485802a6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -134,13 +134,13 @@ static void update_charger(void)
			regulator_set_current_limit(ac_draw, max_uA, max_uA);
			if (!regulator_enabled) {
				dev_dbg(dev, "charger on (AC)\n");
				regulator_enable(ac_draw);
				WARN_ON(regulator_enable(ac_draw));
				regulator_enabled = 1;
			}
		} else {
			if (regulator_enabled) {
				dev_dbg(dev, "charger off\n");
				regulator_disable(ac_draw);
				WARN_ON(regulator_disable(ac_draw));
				regulator_enabled = 0;
			}
		}