public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1 0/2] genirq: Update MAINTAINERS and trivia fix
@ 2024-04-05 18:56 Andy Shevchenko
  2024-04-05 18:56 ` [PATCH v1 1/2] genirq: Update MAINTAINERS to include IRQ related header files Andy Shevchenko
  2024-04-05 18:56 ` [PATCH v1 2/2] genirq: Fix trivia typo in the comment CPY ==> COPY Andy Shevchenko
  0 siblings, 2 replies; 5+ messages in thread
From: Andy Shevchenko @ 2024-04-05 18:56 UTC (permalink / raw)
  To: linux-kernel; +Cc: Thomas Gleixner, Andy Shevchenko

Update MAINTAINERS and trivia fix.

Andy Shevchenko (2):
  genirq: Update MAINTAINERS to include IRQ related header files
  genirq: Fix trivia typo in the comment CPY ==> COPY

 MAINTAINERS         | 6 ++++++
 include/linux/irq.h | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

-- 
2.43.0.rc1.1.gbec44491f096


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

* [PATCH v1 1/2] genirq: Update MAINTAINERS to include IRQ related header files
  2024-04-05 18:56 [PATCH v1 0/2] genirq: Update MAINTAINERS and trivia fix Andy Shevchenko
@ 2024-04-05 18:56 ` Andy Shevchenko
  2024-04-11 10:33   ` [tip: irq/core] genirq: Update MAINTAINERS to include interrupt " tip-bot2 for Andy Shevchenko
  2024-04-05 18:56 ` [PATCH v1 2/2] genirq: Fix trivia typo in the comment CPY ==> COPY Andy Shevchenko
  1 sibling, 1 reply; 5+ messages in thread
From: Andy Shevchenko @ 2024-04-05 18:56 UTC (permalink / raw)
  To: linux-kernel; +Cc: Thomas Gleixner, Andy Shevchenko

IRQ related header files seems orphaned, add them to the respective
subsystem records.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 MAINTAINERS | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 997ebd1ae474..92d57c3782f1 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -11517,6 +11517,7 @@ S:	Maintained
 T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
 F:	Documentation/core-api/irq/irq-domain.rst
 F:	include/linux/irqdomain.h
+F:	include/linux/irqdomain_defs.h
 F:	kernel/irq/irqdomain.c
 F:	kernel/irq/msi.c
 
@@ -11526,6 +11527,10 @@ L:	linux-kernel@vger.kernel.org
 S:	Maintained
 T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
 F:	include/linux/group_cpus.h
+F:	include/linux/irq.h
+F:	include/linux/irqhandler.h
+F:	include/linux/irqnr.h
+F:	include/linux/irqreturn.h
 F:	kernel/irq/
 F:	lib/group_cpus.c
 
@@ -11536,6 +11541,7 @@ S:	Maintained
 T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
 F:	Documentation/devicetree/bindings/interrupt-controller/
 F:	drivers/irqchip/
+F:	include/linux/irqchip.h
 
 ISA
 M:	William Breathitt Gray <wbg@kernel.org>
-- 
2.43.0.rc1.1.gbec44491f096


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

* [PATCH v1 2/2] genirq: Fix trivia typo in the comment CPY ==> COPY
  2024-04-05 18:56 [PATCH v1 0/2] genirq: Update MAINTAINERS and trivia fix Andy Shevchenko
  2024-04-05 18:56 ` [PATCH v1 1/2] genirq: Update MAINTAINERS to include IRQ related header files Andy Shevchenko
@ 2024-04-05 18:56 ` Andy Shevchenko
  2024-04-11 10:33   ` [tip: irq/core] genirq: Fix trivial " tip-bot2 for Andy Shevchenko
  1 sibling, 1 reply; 5+ messages in thread
From: Andy Shevchenko @ 2024-04-05 18:56 UTC (permalink / raw)
  To: linux-kernel; +Cc: Thomas Gleixner, Andy Shevchenko

IRQ_SET_MASK_NOCOPY is defined with 'O' letter. Fix the comment.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 include/linux/irq.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/irq.h b/include/linux/irq.h
index 97baa937ab5b..a217e1029c1d 100644
--- a/include/linux/irq.h
+++ b/include/linux/irq.h
@@ -115,7 +115,7 @@ enum {
  * Return value for chip->irq_set_affinity()
  *
  * IRQ_SET_MASK_OK	- OK, core updates irq_common_data.affinity
- * IRQ_SET_MASK_NOCPY	- OK, chip did update irq_common_data.affinity
+ * IRQ_SET_MASK_NOCOPY	- OK, chip did update irq_common_data.affinity
  * IRQ_SET_MASK_OK_DONE	- Same as IRQ_SET_MASK_OK for core. Special code to
  *			  support stacked irqchips, which indicates skipping
  *			  all descendant irqchips.
-- 
2.43.0.rc1.1.gbec44491f096


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

* [tip: irq/core] genirq: Fix trivial typo in the comment CPY ==> COPY
  2024-04-05 18:56 ` [PATCH v1 2/2] genirq: Fix trivia typo in the comment CPY ==> COPY Andy Shevchenko
@ 2024-04-11 10:33   ` tip-bot2 for Andy Shevchenko
  0 siblings, 0 replies; 5+ messages in thread
From: tip-bot2 for Andy Shevchenko @ 2024-04-11 10:33 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: Andy Shevchenko, Thomas Gleixner, x86, linux-kernel, maz

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

Commit-ID:     63752ad191f93144c99e848b7dbda050bda16fa6
Gitweb:        https://git.kernel.org/tip/63752ad191f93144c99e848b7dbda050bda16fa6
Author:        Andy Shevchenko <andriy.shevchenko@linux.intel.com>
AuthorDate:    Fri, 05 Apr 2024 21:56:46 +03:00
Committer:     Thomas Gleixner <tglx@linutronix.de>
CommitterDate: Thu, 11 Apr 2024 12:29:40 +02:00

genirq: Fix trivial typo in the comment CPY ==> COPY

IRQ_SET_MASK_NOCOPY is defined with 'O' letter. Fix the comment.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/r/20240405185726.3931703-3-andriy.shevchenko@linux.intel.com

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

diff --git a/include/linux/irq.h b/include/linux/irq.h
index 97baa93..a217e10 100644
--- a/include/linux/irq.h
+++ b/include/linux/irq.h
@@ -115,7 +115,7 @@ enum {
  * Return value for chip->irq_set_affinity()
  *
  * IRQ_SET_MASK_OK	- OK, core updates irq_common_data.affinity
- * IRQ_SET_MASK_NOCPY	- OK, chip did update irq_common_data.affinity
+ * IRQ_SET_MASK_NOCOPY	- OK, chip did update irq_common_data.affinity
  * IRQ_SET_MASK_OK_DONE	- Same as IRQ_SET_MASK_OK for core. Special code to
  *			  support stacked irqchips, which indicates skipping
  *			  all descendant irqchips.

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

* [tip: irq/core] genirq: Update MAINTAINERS to include interrupt related header files
  2024-04-05 18:56 ` [PATCH v1 1/2] genirq: Update MAINTAINERS to include IRQ related header files Andy Shevchenko
@ 2024-04-11 10:33   ` tip-bot2 for Andy Shevchenko
  0 siblings, 0 replies; 5+ messages in thread
From: tip-bot2 for Andy Shevchenko @ 2024-04-11 10:33 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: Andy Shevchenko, Thomas Gleixner, x86, linux-kernel, maz

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

Commit-ID:     81e4cb0fd45c84d416e3edffbf6ae62c89ce6b5a
Gitweb:        https://git.kernel.org/tip/81e4cb0fd45c84d416e3edffbf6ae62c89ce6b5a
Author:        Andy Shevchenko <andriy.shevchenko@linux.intel.com>
AuthorDate:    Fri, 05 Apr 2024 21:56:45 +03:00
Committer:     Thomas Gleixner <tglx@linutronix.de>
CommitterDate: Thu, 11 Apr 2024 12:29:40 +02:00

genirq: Update MAINTAINERS to include interrupt related header files

Interrupt related header files seems orphaned, add them to the respective
subsystem records.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/r/20240405185726.3931703-2-andriy.shevchenko@linux.intel.com

---
 MAINTAINERS | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 4a909b1..adab4f3 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -11435,6 +11435,7 @@ S:	Maintained
 T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
 F:	Documentation/core-api/irq/irq-domain.rst
 F:	include/linux/irqdomain.h
+F:	include/linux/irqdomain_defs.h
 F:	kernel/irq/irqdomain.c
 F:	kernel/irq/msi.c
 
@@ -11444,6 +11445,10 @@ L:	linux-kernel@vger.kernel.org
 S:	Maintained
 T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
 F:	include/linux/group_cpus.h
+F:	include/linux/irq.h
+F:	include/linux/irqhandler.h
+F:	include/linux/irqnr.h
+F:	include/linux/irqreturn.h
 F:	kernel/irq/
 F:	lib/group_cpus.c
 
@@ -11454,6 +11459,7 @@ S:	Maintained
 T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
 F:	Documentation/devicetree/bindings/interrupt-controller/
 F:	drivers/irqchip/
+F:	include/linux/irqchip.h
 
 ISA
 M:	William Breathitt Gray <william.gray@linaro.org>

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

end of thread, other threads:[~2024-04-11 10:33 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-05 18:56 [PATCH v1 0/2] genirq: Update MAINTAINERS and trivia fix Andy Shevchenko
2024-04-05 18:56 ` [PATCH v1 1/2] genirq: Update MAINTAINERS to include IRQ related header files Andy Shevchenko
2024-04-11 10:33   ` [tip: irq/core] genirq: Update MAINTAINERS to include interrupt " tip-bot2 for Andy Shevchenko
2024-04-05 18:56 ` [PATCH v1 2/2] genirq: Fix trivia typo in the comment CPY ==> COPY Andy Shevchenko
2024-04-11 10:33   ` [tip: irq/core] genirq: Fix trivial " tip-bot2 for Andy Shevchenko

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