Commit a3241520 authored by Peter Ujfalusi's avatar Peter Ujfalusi Committed by Samuel Ortiz

mfd: twl6040: Fix typo for power on failure

Fix old copy paste bug:
automatic power-down failed -> automatic power-up failed
Signed-off-by: default avatarPeter Ujfalusi <peter.ujfalusi@ti.com>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent 90a38d99
...@@ -258,7 +258,7 @@ int twl6040_power(struct twl6040 *twl6040, int on) ...@@ -258,7 +258,7 @@ int twl6040_power(struct twl6040 *twl6040, int on)
ret = twl6040_power_up_completion(twl6040, naudint); ret = twl6040_power_up_completion(twl6040, naudint);
if (ret) { if (ret) {
dev_err(twl6040->dev, dev_err(twl6040->dev,
"automatic power-down failed\n"); "automatic power-up failed\n");
twl6040->power_count = 0; twl6040->power_count = 0;
goto out; goto out;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment