projects
/
linux-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3028583
)
regulator: core: Add missing newline character
author
Alexander Stein
<alexander.stein@ew.tq-group.com>
Wed, 22 Jan 2025 07:20:19 +0000
(08:20 +0100)
committer
Mark Brown
<broonie@kernel.org>
Wed, 22 Jan 2025 14:29:29 +0000
(14:29 +0000)
dev_err_probe() error messages need newline character.
Fixes:
6eabfc018e8d
("regulator: core: Allow specifying an initial load w/ the bulk API")
Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
Link:
https://patch.msgid.link/20250122072019.1926093-1-alexander.stein@ew.tq-group.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/regulator/core.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/regulator/core.c
b/drivers/regulator/core.c
index 6c0ef1182248d19e0d2d285c77ccee04cb7d8f61..89578b91c4680c0c2d63eee46cbf31ded8549189 100644
(file)
--- a/
drivers/regulator/core.c
+++ b/
drivers/regulator/core.c
@@
-5033,7
+5033,7
@@
int _regulator_bulk_get(struct device *dev, int num_consumers,
consumers[i].supply, get_type);
if (IS_ERR(consumers[i].consumer)) {
ret = dev_err_probe(dev, PTR_ERR(consumers[i].consumer),
- "Failed to get supply '%s'",
+ "Failed to get supply '%s'
\n
",
consumers[i].supply);
consumers[i].consumer = NULL;
goto err;