public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] IRQ_NOTCONNECTED: fix typo in comment
@ 2025-04-03  7:39 Cheng-Yang Chou
  2025-04-10  8:42 ` Thomas Gleixner
  0 siblings, 1 reply; 5+ messages in thread
From: Cheng-Yang Chou @ 2025-04-03  7:39 UTC (permalink / raw)
  To: linux-kernel; +Cc: peterz, tglx, mingo, corbet, jserv, Cheng-Yang Chou

Fixes a minor typo in the comment for IRQ_NOTCONNECTED definition:
"distingiush" is corrected to "distinguish".

Signed-off-by: Cheng-Yang Chou <yphbchou0911@gmail.com>
---
 include/linux/interrupt.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h
index c782a74d2a30..51b6484c0493 100644
--- a/include/linux/interrupt.h
+++ b/include/linux/interrupt.h
@@ -140,7 +140,7 @@ extern irqreturn_t no_action(int cpl, void *dev_id);
 /*
  * If a (PCI) device interrupt is not connected we set dev->irq to
  * IRQ_NOTCONNECTED. This causes request_irq() to fail with -ENOTCONN, so we
- * can distingiush that case from other error returns.
+ * can distinguish that case from other error returns.
  *
  * 0x80000000 is guaranteed to be outside the available range of interrupts
  * and easy to distinguish from other possible incorrect values.

base-commit: 92b71befc349587d58fdbbe6cdd68fb67f4933a8
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] IRQ_NOTCONNECTED: fix typo in comment
  2025-04-03  7:39 [PATCH] IRQ_NOTCONNECTED: fix typo in comment Cheng-Yang Chou
@ 2025-04-10  8:42 ` Thomas Gleixner
  2025-04-10 10:51   ` [PATCH v2] genirq: Fix typo in IRQ_NOTCONNECTED comment Cheng-Yang Chou
  0 siblings, 1 reply; 5+ messages in thread
From: Thomas Gleixner @ 2025-04-10  8:42 UTC (permalink / raw)
  To: Cheng-Yang Chou, linux-kernel
  Cc: peterz, mingo, corbet, jserv, Cheng-Yang Chou

On Thu, Apr 03 2025 at 15:39, Cheng-Yang Chou wrote:

'IRQ_NOTCONNECTED:' is not a proper subsystem prefix.

https://www.kernel.org/doc/html/latest/process/maintainer-tip.html#patch-subject

> Fixes a minor typo in the comment for IRQ_NOTCONNECTED definition:

s/Fixes/Fix/

Thanks,

        tglx

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH v2] genirq: Fix typo in IRQ_NOTCONNECTED comment
  2025-04-10  8:42 ` Thomas Gleixner
@ 2025-04-10 10:51   ` Cheng-Yang Chou
  2025-04-10 14:57     ` [tip: timers/core] " tip-bot2 for Cheng-Yang Chou
  2025-04-24 12:39     ` [tip: irq/core] " tip-bot2 for Cheng-Yang Chou
  0 siblings, 2 replies; 5+ messages in thread
From: Cheng-Yang Chou @ 2025-04-10 10:51 UTC (permalink / raw)
  To: linux-kernel; +Cc: tglx, corbet, jserv, mingo, peterz, Cheng-Yang Chou

Fix a minor typo in the comment for IRQ_NOTCONNECTED definition:
"distingiush" is corrected to "distinguish".

Signed-off-by: Cheng-Yang Chou <yphbchou0911@gmail.com>
---
 include/linux/interrupt.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h
index c782a74d2a30..51b6484c0493 100644
--- a/include/linux/interrupt.h
+++ b/include/linux/interrupt.h
@@ -140,7 +140,7 @@ extern irqreturn_t no_action(int cpl, void *dev_id);
 /*
  * If a (PCI) device interrupt is not connected we set dev->irq to
  * IRQ_NOTCONNECTED. This causes request_irq() to fail with -ENOTCONN, so we
- * can distingiush that case from other error returns.
+ * can distinguish that case from other error returns.
  *
  * 0x80000000 is guaranteed to be outside the available range of interrupts
  * and easy to distinguish from other possible incorrect values.

base-commit: 92b71befc349587d58fdbbe6cdd68fb67f4933a8
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [tip: timers/core] genirq: Fix typo in IRQ_NOTCONNECTED comment
  2025-04-10 10:51   ` [PATCH v2] genirq: Fix typo in IRQ_NOTCONNECTED comment Cheng-Yang Chou
@ 2025-04-10 14:57     ` tip-bot2 for Cheng-Yang Chou
  2025-04-24 12:39     ` [tip: irq/core] " tip-bot2 for Cheng-Yang Chou
  1 sibling, 0 replies; 5+ messages in thread
From: tip-bot2 for Cheng-Yang Chou @ 2025-04-10 14:57 UTC (permalink / raw)
  To: linux-tip-commits; +Cc: Cheng-Yang Chou, Thomas Gleixner, x86, linux-kernel

The following commit has been merged into the timers/core branch of tip:

Commit-ID:     1732e45b79bbb38cccc336ae1c2a5101e7c9e876
Gitweb:        https://git.kernel.org/tip/1732e45b79bbb38cccc336ae1c2a5101e7c9e876
Author:        Cheng-Yang Chou <yphbchou0911@gmail.com>
AuthorDate:    Thu, 10 Apr 2025 18:51:43 +08:00
Committer:     Thomas Gleixner <tglx@linutronix.de>
CommitterDate: Thu, 10 Apr 2025 16:49:10 +02:00

genirq: Fix typo in IRQ_NOTCONNECTED comment

Fix a minor typo in the comment for IRQ_NOTCONNECTED:
"distingiush" is corrected to "distinguish".

Signed-off-by: Cheng-Yang Chou <yphbchou0911@gmail.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/all/20250410105144.214849-1-yphbchou0911@gmail.com

---
 include/linux/interrupt.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h
index c782a74..51b6484 100644
--- a/include/linux/interrupt.h
+++ b/include/linux/interrupt.h
@@ -140,7 +140,7 @@ extern irqreturn_t no_action(int cpl, void *dev_id);
 /*
  * If a (PCI) device interrupt is not connected we set dev->irq to
  * IRQ_NOTCONNECTED. This causes request_irq() to fail with -ENOTCONN, so we
- * can distingiush that case from other error returns.
+ * can distinguish that case from other error returns.
  *
  * 0x80000000 is guaranteed to be outside the available range of interrupts
  * and easy to distinguish from other possible incorrect values.

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [tip: irq/core] genirq: Fix typo in IRQ_NOTCONNECTED comment
  2025-04-10 10:51   ` [PATCH v2] genirq: Fix typo in IRQ_NOTCONNECTED comment Cheng-Yang Chou
  2025-04-10 14:57     ` [tip: timers/core] " tip-bot2 for Cheng-Yang Chou
@ 2025-04-24 12:39     ` tip-bot2 for Cheng-Yang Chou
  1 sibling, 0 replies; 5+ messages in thread
From: tip-bot2 for Cheng-Yang Chou @ 2025-04-24 12:39 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: Cheng-Yang Chou, Thomas Gleixner, x86, linux-kernel, maz

The following commit has been merged into the irq/core branch of tip:

Commit-ID:     0128816c42b52c6ee339718621aeda85855cd3be
Gitweb:        https://git.kernel.org/tip/0128816c42b52c6ee339718621aeda85855cd3be
Author:        Cheng-Yang Chou <yphbchou0911@gmail.com>
AuthorDate:    Thu, 10 Apr 2025 18:51:43 +08:00
Committer:     Thomas Gleixner <tglx@linutronix.de>
CommitterDate: Thu, 24 Apr 2025 14:31:03 +02:00

genirq: Fix typo in IRQ_NOTCONNECTED comment

Fix a minor typo in the comment for IRQ_NOTCONNECTED:
"distingiush" is corrected to "distinguish".

Signed-off-by: Cheng-Yang Chou <yphbchou0911@gmail.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/all/20250410105144.214849-1-yphbchou0911@gmail.com

---
 include/linux/interrupt.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h
index c782a74..51b6484 100644
--- a/include/linux/interrupt.h
+++ b/include/linux/interrupt.h
@@ -140,7 +140,7 @@ extern irqreturn_t no_action(int cpl, void *dev_id);
 /*
  * If a (PCI) device interrupt is not connected we set dev->irq to
  * IRQ_NOTCONNECTED. This causes request_irq() to fail with -ENOTCONN, so we
- * can distingiush that case from other error returns.
+ * can distinguish that case from other error returns.
  *
  * 0x80000000 is guaranteed to be outside the available range of interrupts
  * and easy to distinguish from other possible incorrect values.

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2025-04-24 12:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-03  7:39 [PATCH] IRQ_NOTCONNECTED: fix typo in comment Cheng-Yang Chou
2025-04-10  8:42 ` Thomas Gleixner
2025-04-10 10:51   ` [PATCH v2] genirq: Fix typo in IRQ_NOTCONNECTED comment Cheng-Yang Chou
2025-04-10 14:57     ` [tip: timers/core] " tip-bot2 for Cheng-Yang Chou
2025-04-24 12:39     ` [tip: irq/core] " tip-bot2 for Cheng-Yang Chou

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox