[PATCH] drivers/isdn/hardware/mISDN/w6692.c: Fix spelling typo in comment

YouHong Li posted 1 patch 1 year, 12 months ago
There is a newer version of this series
[PATCH] drivers/isdn/hardware/mISDN/w6692.c: Fix spelling typo in comment
Posted by YouHong Li 1 year, 12 months ago
From: liyouhong <liyouhong@kylinos.cn>

Fix spelling typo in comment.

Reported-by: k2ci <kernel-bot@kylinos.cn>
Signed-off-by: liyouhong <liyouhong@kylinos.cn>

diff --git a/drivers/isdn/hardware/mISDN/w6692.c b/drivers/isdn/hardware/mISDN/w6692.c
index f3b8db7b48fe..21669063b815 100644
--- a/drivers/isdn/hardware/mISDN/w6692.c
+++ b/drivers/isdn/hardware/mISDN/w6692.c
@@ -772,7 +772,7 @@ w6692_irq(int intno, void *dev_id)
 	spin_lock(&card->lock);
 	ista = ReadW6692(card, W_ISTA);
 	if ((ista | card->imask) == card->imask) {
-		/* possible a shared  IRQ reqest */
+		/* possible a shared  IRQ request */
 		spin_unlock(&card->lock);
 		return IRQ_NONE;
 	}
-- 
2.34.1
Re: [PATCH] drivers/isdn/hardware/mISDN/w6692.c: Fix spelling typo in comment
Posted by Simon Horman 1 year, 12 months ago
On Thu, Dec 21, 2023 at 10:47:58AM +0800, YouHong Li wrote:
> From: liyouhong <liyouhong@kylinos.cn>
> 
> Fix spelling typo in comment.
> 
> Reported-by: k2ci <kernel-bot@kylinos.cn>
> Signed-off-by: liyouhong <liyouhong@kylinos.cn>

Thanks,

while we are updating this file could we also fix the following
which is flagged by codespell: oscilator ==> oscillator

With that update feel free to add:

Reviewed-by: Simon Horman <horms@kernel.org>