Commit ad9d7a82 authored by Chen-Yu Tsai's avatar Chen-Yu Tsai Committed by Mark Brown

regulator: Clarify error message for "id == NULL" in _regulator_get()

The original error message simply said "get() with no identifier"
without any context as to what was requested or what device the
request was related to. The only thing the user or developer could
do was grep for the message in the full source tree.

Amend the error message to be more specific, and also use dev_*
to associate the error message with a device.
Signed-off-by: default avatarChen-Yu Tsai <wenst@chromium.org>
Link: https://patch.msgid.link/20240822072047.3097740-2-wenst@chromium.orgSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 5a38089f
...@@ -2183,7 +2183,7 @@ struct regulator *_regulator_get(struct device *dev, const char *id, ...@@ -2183,7 +2183,7 @@ struct regulator *_regulator_get(struct device *dev, const char *id,
} }
if (id == NULL) { if (id == NULL) {
pr_err("get() with no identifier\n"); dev_err(dev, "regulator request with no identifier\n");
return ERR_PTR(-EINVAL); return ERR_PTR(-EINVAL);
} }
......
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