2023-12-21 02:49:15

by YouHong Li

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

From: liyouhong <[email protected]>

Fix spelling typo in comment.

Reported-by: k2ci <[email protected]>
Signed-off-by: liyouhong <[email protected]>

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



2023-12-21 17:40:53

by Simon Horman

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

On Thu, Dec 21, 2023 at 10:47:58AM +0800, YouHong Li wrote:
> From: liyouhong <[email protected]>
>
> Fix spelling typo in comment.
>
> Reported-by: k2ci <[email protected]>
> Signed-off-by: liyouhong <[email protected]>

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 <[email protected]>