All of lore.kernel.org
 help / color / mirror / Atom feed
* [RESEND PATCH] mux: mmio: Add missing word in error message
@ 2025-03-16 13:58 Thorsten Blum
  2025-05-01 17:56 ` Krzysztof Kozlowski
  0 siblings, 1 reply; 2+ messages in thread
From: Thorsten Blum @ 2025-03-16 13:58 UTC (permalink / raw)
  To: Peter Rosin; +Cc: Thorsten Blum, linux-kernel

s/failed allocate/failed to allocate/

Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
---
 drivers/mux/mmio.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mux/mmio.c b/drivers/mux/mmio.c
index 30a952c34365..c4e59d2ed42b 100644
--- a/drivers/mux/mmio.c
+++ b/drivers/mux/mmio.c
@@ -107,7 +107,7 @@ static int mux_mmio_probe(struct platform_device *pdev)
 		fields[i] = devm_regmap_field_alloc(dev, regmap, field);
 		if (IS_ERR(fields[i])) {
 			ret = PTR_ERR(fields[i]);
-			dev_err(dev, "bitfield %d: failed allocate: %d\n",
+			dev_err(dev, "bitfield %d: failed to allocate: %d\n",
 				i, ret);
 			return ret;
 		}
-- 
2.48.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2025-05-01 17:56 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-16 13:58 [RESEND PATCH] mux: mmio: Add missing word in error message Thorsten Blum
2025-05-01 17:56 ` Krzysztof Kozlowski

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.