diff options
author | Alexander Stein <alexander.stein@ew.tq-group.com> | 2025-01-22 08:20:19 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2025-01-22 14:29:29 +0000 |
commit | 155c569fa4c3b340fbf8571a0e42dd415c025377 (patch) | |
tree | b02c238f32c8bfd132860005c4d46142794ec81a | |
parent | 3028583d1314a70ca273c51e0265f698c0bd5760 (diff) |
regulator: core: Add missing newline character
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>
-rw-r--r-- | drivers/regulator/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c index 6c0ef1182248..89578b91c468 100644 --- 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; |