regulator: core: Add missing newline character

dev_err_probe() error messages need newline character.

Fixes: 6eabfc018e ("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>
This commit is contained in:
Alexander Stein 2025-01-22 08:20:19 +01:00 committed by Mark Brown
parent 3028583d13
commit 155c569fa4
No known key found for this signature in database
GPG Key ID: 24D68B725D5487D0

View File

@ -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;