git: ba14705a3a28 - stable/12 - ena(4): Remove a double word in a source code comment

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Thu, 14 Apr 2022 06:45:31 UTC
The branch stable/12 has been updated by gbe (doc committer):

URL: https://cgit.FreeBSD.org/src/commit/?id=ba14705a3a28144ea6d9b000a8e73b9f56166615

commit ba14705a3a28144ea6d9b000a8e73b9f56166615
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-04-09 08:50:49 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-04-14 06:43:14 +0000

    ena(4): Remove a double word in a source code comment
    
    - s/for for/for/
    
    (cherry picked from commit 609e6f6d285e661277cb3a365e38640296471478)
---
 sys/dev/ena/ena.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/ena/ena.c b/sys/dev/ena/ena.c
index fe3bcac6c6ab..db83d3670b34 100644
--- a/sys/dev/ena/ena.c
+++ b/sys/dev/ena/ena.c
@@ -2532,7 +2532,7 @@ ena_calc_max_io_queue_num(device_t pdev, struct ena_com_dev *ena_dev,
 	max_num_io_queues = min_t(uint32_t, max_num_io_queues, io_rx_num);
 	max_num_io_queues = min_t(uint32_t, max_num_io_queues, io_tx_sq_num);
 	max_num_io_queues = min_t(uint32_t, max_num_io_queues, io_tx_cq_num);
-	/* 1 IRQ for for mgmnt and 1 IRQ for each TX/RX pair */
+	/* 1 IRQ for mgmnt and 1 IRQ for each TX/RX pair */
 	max_num_io_queues = min_t(uint32_t, max_num_io_queues,
 	    pci_msix_count(pdev) - 1);
 #ifdef RSS