mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "Jiri Slaby (SUSE)" <jirislaby@kernel.org>
To: tglx@linutronix.de
Cc: maz@kernel.org, linux-kernel@vger.kernel.org,
	"Jiri Slaby (SUSE)" <jirislaby@kernel.org>,
	Jonathan Corbet <corbet@lwn.net>,
	linux-doc@vger.kernel.org, Randy Dunlap <rdunlap@infradead.org>
Subject: [PATCH v2 55/57] docs: irq-domain.rst: Simple improvements
Date: Wed, 19 Mar 2025 10:29:48 +0100	[thread overview]
Message-ID: <20250319092951.37667-56-jirislaby@kernel.org> (raw)
In-Reply-To: <20250319092951.37667-1-jirislaby@kernel.org>

The improvements include:
* Capitals in headlines.
* Added commas: for easier reading, it is always desired to add commas
  at some places in text. Like before adverbs or after fronted
  sentences.
* 3rd person -> add 's' to verbs.
* End some sentences with period and start a new one. Avoid thus heavy
  sentences.

Signed-off-by: Jiri Slaby (SUSE) <jirislaby@kernel.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Cc: Randy Dunlap <rdunlap@infradead.org>
---
 Documentation/core-api/irq/irq-domain.rst | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/Documentation/core-api/irq/irq-domain.rst b/Documentation/core-api/irq/irq-domain.rst
index 775dd43b3340..c2f2728b1a35 100644
--- a/Documentation/core-api/irq/irq-domain.rst
+++ b/Documentation/core-api/irq/irq-domain.rst
@@ -1,19 +1,19 @@
 ===============================================
-The irq_domain interrupt number mapping library
+The irq_domain Interrupt Number Mapping Library
 ===============================================
 
 The current design of the Linux kernel uses a single large number
 space where each separate IRQ source is assigned a different number.
 This is simple when there is only one interrupt controller, but in
-systems with multiple interrupt controllers the kernel must ensure
+systems with multiple interrupt controllers, the kernel must ensure
 that each one gets assigned non-overlapping allocations of Linux
 IRQ numbers.
 
 The number of interrupt controllers registered as unique irqchips
-show a rising tendency: for example subdrivers of different kinds
+shows a rising tendency. For example, subdrivers of different kinds
 such as GPIO controllers avoid reimplementing identical callback
 mechanisms as the IRQ core system by modelling their interrupt
-handlers as irqchips, i.e. in effect cascading interrupt controllers.
+handlers as irqchips. I.e. in effect cascading interrupt controllers.
 
 Here the interrupt number loose all kind of correspondence to
 hardware interrupt numbers: whereas in the past, IRQ numbers could
@@ -21,15 +21,15 @@ be chosen so they matched the hardware IRQ line into the root
 interrupt controller (i.e. the component actually fireing the
 interrupt line to the CPU) nowadays this number is just a number.
 
-For this reason we need a mechanism to separate controller-local
-interrupt numbers, called hardware irq's, from Linux IRQ numbers.
+For this reason, we need a mechanism to separate controller-local
+interrupt numbers, called hardware IRQs, from Linux IRQ numbers.
 
 The irq_alloc_desc*() and irq_free_desc*() APIs provide allocation of
 irq numbers, but they don't provide any support for reverse mapping of
 the controller-local IRQ (hwirq) number into the Linux IRQ number
 space.
 
-The irq_domain library adds mapping between hwirq and IRQ numbers on
+The irq_domain library adds a mapping between hwirq and IRQ numbers on
 top of the irq_alloc_desc*() API.  An irq_domain to manage mapping is
 preferred over interrupt controller drivers open coding their own
 reverse mapping scheme.
@@ -38,7 +38,7 @@ irq_domain also implements translation from an abstract irq_fwspec
 structure to hwirq numbers (Device Tree and ACPI GSI so far), and can
 be easily extended to support other IRQ topology data sources.
 
-irq_domain usage
+irq_domain Usage
 ================
 
 An interrupt controller driver creates and registers an irq_domain by
@@ -77,7 +77,7 @@ If the driver has the Linux IRQ number or the irq_data pointer, and
 needs to know the associated hwirq number (such as in the irq_chip
 callbacks) then it can be directly obtained from irq_data->hwirq.
 
-Types of irq_domain mappings
+Types of irq_domain Mappings
 ============================
 
 There are several mechanisms available for reverse mapping from hwirq
@@ -102,7 +102,7 @@ map are fixed time lookup for IRQ numbers, and irq_descs are only
 allocated for in-use IRQs.  The disadvantage is that the table must be
 as large as the largest possible hwirq number.
 
-The majority of drivers should use the linear map.
+The majority of drivers should use the Linear map.
 
 Tree
 ----
@@ -190,7 +190,7 @@ that the driver using the simple domain call irq_create_mapping()
 before any irq_find_mapping() since the latter will actually work
 for the static IRQ assignment case.
 
-Hierarchy IRQ domain
+Hierarchy IRQ Domain
 --------------------
 
 On some architectures, there may be multiple interrupt controllers
-- 
2.49.0


  parent reply	other threads:[~2025-03-19  9:33 UTC|newest]

Thread overview: 273+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-19  9:28 [PATCH v2 00/57] irqdomain: Cleanups and Documentation Jiri Slaby (SUSE)
2025-03-19  9:28 ` [PATCH v2 01/57] irqdomain: um: use irq_domain_create_linear() helper Jiri Slaby (SUSE)
2025-04-07  7:08   ` Jiri Slaby
2025-05-06 13:20   ` [tip: irq/cleanups] um: Use " tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:28 ` [PATCH v2 02/57] irqdomain: Rename irq_set_default_host() to irq_set_default_domain() Jiri Slaby (SUSE)
2025-04-04 15:14   ` [tip: irq/urgent] " tip-bot2 for Jiri Slaby (SUSE)
2025-04-04 17:34   ` [tip: timers/cleanups] " tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:28 ` [PATCH v2 03/57] irqdomain: Rename irq_get_default_host() to irq_get_default_domain() Jiri Slaby (SUSE)
2025-04-04 15:14   ` [tip: irq/urgent] " tip-bot2 for Jiri Slaby (SUSE)
2025-04-04 17:34   ` [tip: timers/cleanups] " tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:28 ` [PATCH v2 04/57] irqdomain.h: Stop using 'host' for domain Jiri Slaby (SUSE)
2025-04-04 15:14   ` [tip: irq/urgent] irqdomain: " tip-bot2 for Jiri Slaby (SUSE)
2025-04-04 17:33   ` [tip: timers/cleanups] " tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:28 ` [PATCH v2 05/57] irqdomain: cdx: Switch to of_fwnode_handle() Jiri Slaby (SUSE)
2025-04-07  7:08   ` Jiri Slaby
2025-04-07  8:05   ` Gupta, Nipun
2025-03-19  9:28 ` [PATCH v2 06/57] irqdomain: irqchip: " Jiri Slaby (SUSE)
2025-03-19 10:29   ` [Linux-stm32] " Antonio Borneo
2025-03-20  5:26   ` Anup Patel
2025-03-20 17:15   ` Herve Codina
2025-05-06 13:20   ` [tip: irq/cleanups] " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:58   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 07/57] irqdomain: pci: " Jiri Slaby (SUSE)
2025-03-21 16:32   ` Bjorn Helgaas
2025-04-07  7:17     ` Jiri Slaby
2025-04-07  7:18       ` Jiri Slaby
2025-04-07 18:03   ` Bjorn Helgaas
2025-05-06 13:20   ` [tip: irq/cleanups] " tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 08/57] irqdomain: ppc: " Jiri Slaby (SUSE)
2025-04-07  7:11   ` Jiri Slaby
2025-05-06 13:20   ` [tip: irq/cleanups] powerpc: " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:58   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 09/57] irqdomain: remoteproc: " Jiri Slaby (SUSE)
2025-03-21 15:52   ` Mathieu Poirier
2025-03-19  9:29 ` [PATCH v2 10/57] irqdomain: x86: " Jiri Slaby (SUSE)
2025-05-06 13:20   ` [tip: irq/cleanups] x86/io_apic: " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:58   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 11/57] irqdomain: Drop of_node_to_fwnode() Jiri Slaby (SUSE)
2025-05-06 13:20   ` [tip: irq/cleanups] " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:58   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 12/57] irqdomain: Make irq_domain_create_hierarchy() an inline Jiri Slaby (SUSE)
2025-03-19  9:44   ` Ilpo Järvinen
2025-03-20  6:08     ` Jiri Slaby
2025-05-06 13:20   ` [tip: irq/cleanups] " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:58   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 13/57] irqdomain: arc: Switch to irq_domain_create_linear() Jiri Slaby (SUSE)
2025-05-06 13:20   ` [tip: irq/cleanups] ARC: " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:58   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 14/57] irqdomain: arm: Switch to irq_domain_create_*() Jiri Slaby (SUSE)
2025-05-06 13:20   ` [tip: irq/cleanups] ARM: " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:58   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 15/57] irqdomain: bus: Switch to irq_domain_create_simple() Jiri Slaby (SUSE)
2025-05-06 13:20   ` [tip: irq/cleanups] bus: moxtet: " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:58   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 16/57] irqdomain: edac: Switch to irq_domain_create_linear() Jiri Slaby (SUSE)
2025-05-06 13:20   ` [tip: irq/cleanups] EDAC/altera: " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:58   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 17/57] irqdomain: gpio: Switch to irq_domain_create_*() Jiri Slaby (SUSE)
2025-03-19 10:40   ` Andy Shevchenko
2025-03-20  6:11     ` Jiri Slaby
2025-05-06 13:20   ` [tip: irq/cleanups] " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:58   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 18/57] irqdomain: gpu: Switch to irq_domain_create_linear() Jiri Slaby (SUSE)
2025-03-19 13:31   ` Alex Deucher
2025-03-20  6:18     ` Jiri Slaby
2025-05-06 13:20   ` [tip: irq/cleanups] " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:58   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 19/57] irqdomain: i2c: " Jiri Slaby (SUSE)
2025-03-25  9:24   ` Wolfram Sang
2025-05-06 13:20   ` [tip: irq/cleanups] " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:58   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 20/57] irqdomain: iio: Switch to irq_domain_create_simple() Jiri Slaby (SUSE)
2025-05-06 13:20   ` [tip: irq/cleanups] " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:58   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 21/57] irqdomain: irqchip: Switch to irq_domain_create_*() Jiri Slaby (SUSE)
2025-03-20  8:25   ` Linus Walleij
2025-03-21  1:49   ` Changhuang Liang
2025-05-06 13:20   ` [tip: irq/cleanups] " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:58   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` [tip: irq/drivers] irqchip/irq-vt8500: " tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` [tip: irq/cleanups] irqchip: " tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 22/57] irqdomain: mailbox: Switch to irq_domain_create_tree() Jiri Slaby (SUSE)
2025-05-06 13:20   ` [tip: irq/cleanups] mailbox: qcom-ipcc: " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:58   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 23/57] irqdomain: memory: Switch to irq_domain_create_linear() Jiri Slaby (SUSE)
2025-05-06 13:20   ` [tip: irq/cleanups] memory: omap-gpmc: " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:58   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 24/57] irqdomain: mfd: Switch to irq_domain_create_*() Jiri Slaby (SUSE)
2025-05-06 13:20   ` [tip: irq/cleanups] " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:58   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 25/57] irqdomain: mips: " Jiri Slaby (SUSE)
2025-05-06 13:20   ` [tip: irq/cleanups] MIPS: " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:58   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 26/57] irqdomain: misc: Switch to irq_domain_create_simple() Jiri Slaby (SUSE)
2025-05-06 13:20   ` [tip: irq/cleanups] misc: hi6421-spmi-pmic: " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:58   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 27/57] irqdomain: net: Switch to irq_domain_create_*() Jiri Slaby (SUSE)
2025-05-06 13:20   ` [tip: irq/cleanups] " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:58   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 28/57] irqdomain: nios2: Switch to irq_domain_create_linear() Jiri Slaby (SUSE)
2025-05-06 13:20   ` [tip: irq/cleanups] " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:58   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 29/57] irqdomain: pci: " Jiri Slaby (SUSE)
2025-05-06 13:20   ` [tip: irq/cleanups] PCI: " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:58   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 30/57] irqdomain: pinctrl: Switch to irq_domain_create_*() Jiri Slaby (SUSE)
2025-03-20  8:37   ` Linus Walleij
2025-05-06 13:20   ` [tip: irq/cleanups] " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:58   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 31/57] irqdomain: platform/x86: Switch to irq_domain_create_linear() Jiri Slaby (SUSE)
2025-03-21 15:51   ` Ilpo Järvinen
2025-03-19  9:29 ` [PATCH v2 32/57] irqdomain: ppc: Switch to irq_domain_create_*() Jiri Slaby (SUSE)
2025-03-21  8:43   ` Christophe Leroy
2025-05-06 13:20   ` [tip: irq/cleanups] powerpc: " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:58   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 33/57] irqdomain: sh: " Jiri Slaby (SUSE)
2025-05-06 13:20   ` [tip: irq/cleanups] " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:58   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 34/57] irqdomain: soc: " Jiri Slaby (SUSE)
2025-03-21  8:44   ` Christophe Leroy
2025-05-06 13:20   ` [tip: irq/cleanups] " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:57   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 35/57] irqdomain: sound: Switch to irq_domain_create_linear() Jiri Slaby (SUSE)
2025-05-06 14:00   ` Mark Brown
2025-03-19  9:29 ` [PATCH v2 36/57] irqdomain: spmi: Switch to irq_domain_create_tree() Jiri Slaby (SUSE)
2025-04-28 23:49   ` Stephen Boyd
2025-03-19  9:29 ` [PATCH v2 37/57] irqdomain: ssb: Switch to irq_domain_create_linear() Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 38/57] irqdomain: thermal: " Jiri Slaby (SUSE)
2025-05-06 13:20   ` [tip: irq/cleanups] " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:57   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 39/57] irqdomain: ppc: Switch irq_domain_add_nomap() to use fwnode Jiri Slaby (SUSE)
2025-05-06 13:20   ` [tip: irq/cleanups] _PATCH_v2_39_57_irqdomain_ppc_Switch_irq_domain_add_nomap_to_use_fwnode tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:57   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` [tip: irq/cleanups] powerpc: Switch irq_domain_add_nomap() to use fwnode tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 40/57] irqdomain: Drop irq_domain_add_*() functions Jiri Slaby (SUSE)
2025-05-06 13:20   ` [tip: irq/cleanups] " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:57   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 41/57] irqdomain: ppc: Switch to irq_find_mapping() Jiri Slaby (SUSE)
2025-03-20 18:14   ` Christophe Leroy
2025-05-06 13:20   ` [tip: irq/cleanups] powerpc: " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:57   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 42/57] irqdomain: sh: " Jiri Slaby (SUSE)
2025-05-06 13:20   ` [tip: irq/cleanups] " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:57   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 43/57] irqdomain: gpio: " Jiri Slaby (SUSE)
2025-03-20  8:38   ` Linus Walleij
2025-05-06 13:20   ` [tip: irq/cleanups] gpio: idt3243x: " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:57   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 44/57] irqdomain: gpu: " Jiri Slaby (SUSE)
2025-05-06 13:20   ` [tip: irq/cleanups] gpu: ipu-v3: " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:57   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 45/57] irqdomain: i2c: " Jiri Slaby (SUSE)
2025-03-25  9:25   ` Wolfram Sang
2025-03-25 10:42     ` Jiri Slaby
2025-03-25 11:35   ` Wolfram Sang
2025-03-19  9:29 ` [PATCH v2 46/57] irqdomain: irqchip: " Jiri Slaby (SUSE)
2025-05-06 13:20   ` [tip: irq/cleanups] irqchip/armada-370-xp: " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:57   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 47/57] irqdomain: pinctrl: " Jiri Slaby (SUSE)
2025-03-20  8:38   ` Linus Walleij
2025-05-06 13:20   ` [tip: irq/cleanups] pinctrl: keembay: " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:57   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 48/57] irqdomain: soc: " Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 49/57] irqdomain: Drop irq_linear_revmap() Jiri Slaby (SUSE)
2025-05-06 13:20   ` [tip: irq/cleanups] " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:57   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 50/57] irqdomain: Use irq_domain_instantiate() retvals as initializers Jiri Slaby (SUSE)
2025-05-06 13:20   ` [tip: irq/cleanups] irqdomain: Use irq_domain_instantiate()'s return value " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:57   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 51/57] irqdomain: Make struct irq_domain_info variables const Jiri Slaby (SUSE)
2025-05-06 13:20   ` [tip: irq/cleanups] " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:57   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 52/57] irqdomain.h: Improve kernel-docs of functions Jiri Slaby (SUSE)
2025-05-06 13:20   ` [tip: irq/cleanups] irqdomain: " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:57   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 53/57] docs: irq/concepts: Add commas and reflow Jiri Slaby (SUSE)
2025-05-06 13:20   ` [tip: irq/cleanups] Documentation: " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:57   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 54/57] docs: irq/concepts: Minor improvements Jiri Slaby (SUSE)
2025-05-06 13:20   ` [tip: irq/cleanups] Documentation: " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:57   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` Jiri Slaby (SUSE) [this message]
2025-03-19 17:54   ` [PATCH v2 55/57] docs: irq-domain.rst: Simple improvements Randy Dunlap
2025-03-20  6:26     ` Jiri Slaby
2025-05-06 13:20   ` [tip: irq/cleanups] Documentation: " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:57   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 56/57] docs: irqdomain: Update Jiri Slaby (SUSE)
2025-03-19 18:01   ` Randy Dunlap
2025-03-20  6:32     ` Jiri Slaby
2025-05-06 13:20   ` [tip: irq/cleanups] Documentation: irqdomain: Update it tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:57   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19  9:29 ` [PATCH v2 57/57] irqdomain.c: Fix kernel-doc and add it to Documentation Jiri Slaby (SUSE)
2025-05-06 13:20   ` [tip: irq/cleanups] irqdomain: " tip-bot2 for Jiri Slaby (SUSE)
2025-05-07  7:57   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-07 13:44   ` tip-bot2 for Jiri Slaby (SUSE)
2025-05-16 19:37   ` tip-bot2 for Jiri Slaby (SUSE)
2025-03-19 10:21 ` [PATCH v2 00/57] irqdomain: Cleanups and Documentation Andy Shevchenko
2025-03-19 10:32   ` Jiri Slaby
2025-03-20 15:18 ` (subset) " Mark Brown
2025-03-25  7:03 ` Christophe Leroy
2025-05-06 13:41 ` Thomas Gleixner
2025-05-12  9:55   ` Jiri Slaby

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250319092951.37667-56-jirislaby@kernel.org \
    --to=jirislaby@kernel.org \
    --cc=corbet@lwn.net \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=maz@kernel.org \
    --cc=rdunlap@infradead.org \
    --cc=tglx@linutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®