* [PATCH] hw/qib: fix repeated words in comments
@ 2022-07-24 7:44 wangjianli
2022-07-28 15:50 ` Jason Gunthorpe
0 siblings, 1 reply; 6+ messages in thread
From: wangjianli @ 2022-07-24 7:44 UTC (permalink / raw)
To: dennis.dalessandro, jgg, leon; +Cc: linux-rdma, linux-kernel, wangjianli
Delete the redundant word 'in'.
Signed-off-by: wangjianli <wangjianli@cdjrlc.com>
---
drivers/infiniband/hw/qib/qib_iba7220.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/infiniband/hw/qib/qib_iba7220.c b/drivers/infiniband/hw/qib/qib_iba7220.c
index 37b628a162e0..6af57067c32e 100644
--- a/drivers/infiniband/hw/qib/qib_iba7220.c
+++ b/drivers/infiniband/hw/qib/qib_iba7220.c
@@ -58,7 +58,7 @@ static void qib_set_ib_7220_lstate(struct qib_pportdata *, u16, u16);
/*
* This file contains almost all the chip-specific register information and
* access functions for the QLogic QLogic_IB 7220 PCI-Express chip, with the
- * exception of SerDes support, which in in qib_sd7220.c.
+ * exception of SerDes support, which in qib_sd7220.c.
*/
/* Below uses machine-generated qib_chipnum_regs.h file */
--
2.36.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] hw/qib: fix repeated words in comments
2022-07-24 7:44 [PATCH] hw/qib: fix repeated words in comments wangjianli
@ 2022-07-28 15:50 ` Jason Gunthorpe
0 siblings, 0 replies; 6+ messages in thread
From: Jason Gunthorpe @ 2022-07-28 15:50 UTC (permalink / raw)
To: wangjianli; +Cc: dennis.dalessandro, leon, linux-rdma, linux-kernel
On Sun, Jul 24, 2022 at 03:44:07PM +0800, wangjianli wrote:
> Delete the redundant word 'in'.
>
> Signed-off-by: wangjianli <wangjianli@cdjrlc.com>
> ---
> drivers/infiniband/hw/qib/qib_iba7220.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Applied to for-next, thanks
Jason
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] hw/qib: fix repeated words in comments
@ 2022-09-08 13:20 wangjianli
2022-09-20 11:12 ` Leon Romanovsky
0 siblings, 1 reply; 6+ messages in thread
From: wangjianli @ 2022-09-08 13:20 UTC (permalink / raw)
To: dennis.dalessandro, jgg, leon; +Cc: linux-rdma, linux-kernel, wangjianli
Delete the redundant word 'to'.
Signed-off-by: wangjianli <wangjianli@cdjrlc.com>
---
drivers/infiniband/hw/qib/qib_pcie.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/infiniband/hw/qib/qib_pcie.c b/drivers/infiniband/hw/qib/qib_pcie.c
index cb2a02d671e2..692b64efad97 100644
--- a/drivers/infiniband/hw/qib/qib_pcie.c
+++ b/drivers/infiniband/hw/qib/qib_pcie.c
@@ -295,7 +295,7 @@ void qib_free_irq(struct qib_devdata *dd)
* Setup pcie interrupt stuff again after a reset. I'd like to just call
* pci_enable_msi() again for msi, but when I do that,
* the MSI enable bit doesn't get set in the command word, and
- * we switch to to a different interrupt vector, which is confusing,
+ * we switch to a different interrupt vector, which is confusing,
* so I instead just do it all inline. Perhaps somehow can tie this
* into the PCIe hotplug support at some point
*/
--
2.36.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] hw/qib: fix repeated words in comments
2022-09-08 13:20 wangjianli
@ 2022-09-20 11:12 ` Leon Romanovsky
0 siblings, 0 replies; 6+ messages in thread
From: Leon Romanovsky @ 2022-09-20 11:12 UTC (permalink / raw)
To: dennis.dalessandro, wangjianli, jgg; +Cc: linux-kernel, linux-rdma
On Thu, 8 Sep 2022 21:20:36 +0800, wangjianli wrote:
> Delete the redundant word 'to'.
>
>
Applied, thanks!
[1/1] RDMA/qib: fix repeated words in comments
commit: 7eff36527195cf434dc8f9ddc7bedc0254d0d835
Best regards,
--
Leon Romanovsky <leon@kernel.org>
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] hw/qib: fix repeated words in comments
@ 2022-10-22 5:59 wangjianli
2022-10-24 11:47 ` Leon Romanovsky
0 siblings, 1 reply; 6+ messages in thread
From: wangjianli @ 2022-10-22 5:59 UTC (permalink / raw)
To: dennis.dalessandro, jgg, leon; +Cc: linux-rdma, linux-kernel, wangjianli
Delete the redundant word 'the'.
Signed-off-by: wangjianli <wangjianli@cdjrlc.com>
---
drivers/infiniband/hw/qib/qib_user_sdma.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/infiniband/hw/qib/qib_user_sdma.c b/drivers/infiniband/hw/qib/qib_user_sdma.c
index bf2f30d67949..9fe03d6ffac1 100644
--- a/drivers/infiniband/hw/qib/qib_user_sdma.c
+++ b/drivers/infiniband/hw/qib/qib_user_sdma.c
@@ -851,7 +851,7 @@ static int qib_user_sdma_queue_pkts(const struct qib_devdata *dd,
}
/*
- * This assignment is a bit strange. it's because the
+ * This assignment is a bit strange. it's because
* the pbc counts the number of 32 bit words in the full
* packet _except_ the first word of the pbc itself...
*/
--
2.36.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] hw/qib: fix repeated words in comments
2022-10-22 5:59 wangjianli
@ 2022-10-24 11:47 ` Leon Romanovsky
0 siblings, 0 replies; 6+ messages in thread
From: Leon Romanovsky @ 2022-10-24 11:47 UTC (permalink / raw)
To: wangjianli, jgg, dennis.dalessandro; +Cc: linux-kernel, linux-rdma
On Sat, 22 Oct 2022 13:59:05 +0800, wangjianli wrote:
> Delete the redundant word 'the'.
>
>
Applied, thanks!
[1/1] hw/qib: fix repeated words in comments
https://git.kernel.org/rdma/rdma/c/2d5206c4629dfe
Best regards,
--
Leon Romanovsky <leon@kernel.org>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2022-10-24 12:27 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-24 7:44 [PATCH] hw/qib: fix repeated words in comments wangjianli
2022-07-28 15:50 ` Jason Gunthorpe
-- strict thread matches above, loose matches on Subject: below --
2022-09-08 13:20 wangjianli
2022-09-20 11:12 ` Leon Romanovsky
2022-10-22 5:59 wangjianli
2022-10-24 11:47 ` Leon Romanovsky
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox