[PATCH] mailbox: fix repeated word in log message

From: Hemanth Selam

Date: Fri Sep 04 2026 - 08:38:33 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/mailbox/arm_mhuv2.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mailbox/arm_mhuv2.c b/drivers/mailbox/arm_mhuv2.c
index d4077cd49360..94e25678f0af 100644
--- a/drivers/mailbox/arm_mhuv2.c
+++ b/drivers/mailbox/arm_mhuv2.c
@@ -610,7 +610,7 @@ static irqreturn_t mhuv2_sender_interrupt(int irq, void *data)
* iteration if the interrupt came right after we cleared it but
* before we read the stat register.
*/
- dev_dbg(dev, "Couldn't find the doorbell (%u) for the Tx interrupt interrupt\n",
+ dev_dbg(dev, "Couldn't find the doorbell (%u) for the Tx interrupt\n",
priv->ch_wn_idx);
return IRQ_NONE;
}
--
2.48.1