[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20250122072019.1926093-1-alexander.stein@ew.tq-group.com>
Date: Wed, 22 Jan 2025 08:20:19 +0100
From: Alexander Stein <alexander.stein@...tq-group.com>
To: Liam Girdwood <lgirdwood@...il.com>,
Mark Brown <broonie@...nel.org>,
Douglas Anderson <dianders@...omium.org>
Cc: Alexander Stein <alexander.stein@...tq-group.com>,
linux-kernel@...r.kernel.org
Subject: [PATCH 1/1] 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@...tq-group.com>
---
drivers/regulator/core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index 6c0ef1182248d..89578b91c4680 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;
--
2.34.1
Powered by blists - more mailing lists