[PATCH v3 1/4] irqdomain: Export irq_domain_free_irqs

Aaron Kling via B4 Relay posted 4 patches 9 months, 1 week ago
There is a newer version of this series
[PATCH v3 1/4] irqdomain: Export irq_domain_free_irqs
Posted by Aaron Kling via B4 Relay 9 months, 1 week ago
From: Aaron Kling <webgeek1234@gmail.com>

Add export for irq_domain_free_irqs() so that we can allow drivers like
the pci-tegra driver to be loadable as a module.

Signed-off-by: Aaron Kling <webgeek1234@gmail.com>
---
 kernel/irq/irqdomain.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kernel/irq/irqdomain.c b/kernel/irq/irqdomain.c
index ec6d8e72d980f604ded2bfa2143420e0e0095920..36cd79a8a2ce960b07b03c40067343ec8f632452 100644
--- a/kernel/irq/irqdomain.c
+++ b/kernel/irq/irqdomain.c
@@ -1890,6 +1890,7 @@ void irq_domain_free_irqs(unsigned int virq, unsigned int nr_irqs)
 	irq_domain_free_irq_data(virq, nr_irqs);
 	irq_free_descs(virq, nr_irqs);
 }
+EXPORT_SYMBOL_GPL(irq_domain_free_irqs);
 
 static void irq_domain_free_one_irq(struct irq_domain *domain, unsigned int virq)
 {

-- 
2.48.1
Re: [PATCH v3 1/4] irqdomain: Export irq_domain_free_irqs
Posted by Thomas Gleixner 9 months, 1 week ago
On Fri, May 02 2025 at 14:00, Aaron Kling via wrote:

> From: Aaron Kling <webgeek1234@gmail.com>
>
> Add export for irq_domain_free_irqs() so that we can allow drivers like
> the pci-tegra driver to be loadable as a module.
>
> Signed-off-by: Aaron Kling <webgeek1234@gmail.com>

  https://lore.kernel.org/all/877c33qxss.ffs@tglx

Is it that hard to address review comments?

Thanks,

        tglx
Re: [PATCH v3 1/4] irqdomain: Export irq_domain_free_irqs
Posted by Aaron Kling 9 months, 1 week ago
On Mon, May 5, 2025 at 8:14 AM Thomas Gleixner <tglx@linutronix.de> wrote:
>
> On Fri, May 02 2025 at 14:00, Aaron Kling via wrote:
>
> > From: Aaron Kling <webgeek1234@gmail.com>
> >
> > Add export for irq_domain_free_irqs() so that we can allow drivers like
> > the pci-tegra driver to be loadable as a module.
> >
> > Signed-off-by: Aaron Kling <webgeek1234@gmail.com>
>
>   https://lore.kernel.org/all/877c33qxss.ffs@tglx
>
> Is it that hard to address review comments?

Sorry, this review comment completely slipped my mind when I went to
work on the others for this series. Will fix.

Sincerely,
Aaron Kling