Skip to content

Commit 155c569

Browse files
tq-steinabroonie
authored andcommitted
regulator: core: Add missing newline character
dev_err_probe() error messages need newline character. Fixes: 6eabfc0 ("regulator: core: Allow specifying an initial load w/ the bulk API") Signed-off-by: Alexander Stein <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Mark Brown <[email protected]>
1 parent 3028583 commit 155c569

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/regulator/core.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5033,7 +5033,7 @@ int _regulator_bulk_get(struct device *dev, int num_consumers,
50335033
consumers[i].supply, get_type);
50345034
if (IS_ERR(consumers[i].consumer)) {
50355035
ret = dev_err_probe(dev, PTR_ERR(consumers[i].consumer),
5036-
"Failed to get supply '%s'",
5036+
"Failed to get supply '%s'\n",
50375037
consumers[i].supply);
50385038
consumers[i].consumer = NULL;
50395039
goto err;

0 commit comments

Comments
 (0)