[PATCH 3/3] pcmcia: fix repeated word in log message
From: Hemanth Selam
Date: Fri Sep 04 2026 - 07:31:10 EST
Drop the word written twice, reported by checkpatch.pl as a possible
repeated word.
Only the message text changes, no code changes.
Assisted-by: Cursor:claude-opus-5
Signed-off-by: Hemanth Selam <hemanth.selam@xxxxxxxxx>
---
drivers/pcmcia/pd6729.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/pcmcia/pd6729.c b/drivers/pcmcia/pd6729.c
index 1b62ca30d08a..c8c4127c95b0 100644
--- a/drivers/pcmcia/pd6729.c
+++ b/drivers/pcmcia/pd6729.c
@@ -479,7 +479,7 @@ static int pd6729_set_mem_map(struct pcmcia_socket *sock,
}
if ((mem->res->start > mem->res->end) || (mem->speed > 1000)) {
- dev_warn(&sock->dev, "invalid invalid address / speed\n");
+ dev_warn(&sock->dev, "invalid address / speed\n");
return -EINVAL;
}
--
2.48.1