2022-06-25 08:36:46

by XueBing Chen

[permalink] [raw]
Subject: [PATCH] ethernet: s2io: drop unexpected word 'a' in comments


there is an unexpected word 'a' in the comments that need to be dropped

file - drivers/net/ethernet/neterion/s2io.c
line - 3820

/* Test interrupt path by forcing a a software IRQ */

to

/* Test interrupt path by forcing a software IRQ */

Signed-off-by: XueBing Chen <[email protected]>
---
drivers/net/ethernet/neterion/s2io.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/neterion/s2io.c b/drivers/net/ethernet/neterion/s2io.c
index 6dd451adc331..1b75294fe315 100644
--- a/drivers/net/ethernet/neterion/s2io.c
+++ b/drivers/net/ethernet/neterion/s2io.c
@@ -3817,7 +3817,7 @@ static irqreturn_t s2io_test_intr(int irq, void *dev_id)
return IRQ_HANDLED;
}

-/* Test interrupt path by forcing a a software IRQ */
+/* Test interrupt path by forcing a software IRQ */
static int s2io_test_msi(struct s2io_nic *sp)
{
struct pci_dev *pdev = sp->pdev;
--
2.17.1