projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
413ec72
)
regulator: tps65219: Report regulator name if devm_regulator_register fails
author
Wadim Egorov
<w.egorov@phytec.de>
Wed, 14 Dec 2022 15:34:09 +0000
(16:34 +0100)
committer
Mark Brown
<broonie@kernel.org>
Sun, 25 Dec 2022 23:33:42 +0000
(23:33 +0000)
Make the error message more useful by reporting the actual regulator
name if devm_regulator_register() fails.
Signed-off-by: Wadim Egorov <w.egorov@phytec.de>
Link:
https://lore.kernel.org/r/20221214153409.1270213-1-w.egorov@phytec.de
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/regulator/tps65219-regulator.c
patch
|
blob
|
history
diff --git
a/drivers/regulator/tps65219-regulator.c
b/drivers/regulator/tps65219-regulator.c
index c484c943e4675d11e25edfe0bf22843e58fea0b8..f294d3bc5e73500ade6360eb891b9d9343ca271d 100644
(file)
--- a/
drivers/regulator/tps65219-regulator.c
+++ b/
drivers/regulator/tps65219-regulator.c
@@
-342,7
+342,7
@@
static int tps65219_regulator_probe(struct platform_device *pdev)
&config);
if (IS_ERR(rdev)) {
dev_err(tps->dev, "failed to register %s regulator\n",
-
pdev->
name);
+
regulators[i].
name);
return PTR_ERR(rdev);
}
rdevtbl[i] = rdev;