Unverified Commit 75c48adf authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Mark Brown
Browse files

regulator: Mention regulator id in error message about dummy supplies



With the name that is currently looked up it is considerably easier to
understand the issue and fix the warning.

Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Link: https://lore.kernel.org/r/20240507104703.2070117-2-u.kleine-koenig@pengutronix.de


Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 9fcf6ef3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2195,7 +2195,7 @@ struct regulator *_regulator_get(struct device *dev, const char *id,

		if (!have_full_constraints()) {
			dev_warn(dev,
				 "incomplete constraints, dummy supplies not allowed\n");
				 "incomplete constraints, dummy supplies not allowed (id=%s)\n", id);
			return ERR_PTR(-ENODEV);
		}

@@ -2213,7 +2213,7 @@ struct regulator *_regulator_get(struct device *dev, const char *id,

		case EXCLUSIVE_GET:
			dev_warn(dev,
				 "dummy supplies not allowed for exclusive requests\n");
				 "dummy supplies not allowed for exclusive requests (id=%s)\n", id);
			fallthrough;

		default: