Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1435563
| From | Alexander Popov <alex.popov@linux.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 1/1] irqdomain: Export __irq_domain_alloc_irqs() and irq_domain_free_irqs() |
| Date | 2016-07-01 21:40 +0200 |
| Message-ID | <rQcs9-2aJ-9@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Export __irq_domain_alloc_irqs() and irq_domain_free_irqs() for being able to work with irq_domain hierarchy in modules. Signed-off-by: Alexander Popov <alex.popov@linux.com> --- kernel/irq/irqdomain.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kernel/irq/irqdomain.c b/kernel/irq/irqdomain.c index 8798b6c..0ad85be 100644 --- a/kernel/irq/irqdomain.c +++ b/kernel/irq/irqdomain.c @@ -1225,6 +1225,7 @@ out_free_desc: irq_free_descs(virq, nr_irqs); return ret; } +EXPORT_SYMBOL_GPL(__irq_domain_alloc_irqs); /** * irq_domain_free_irqs - Free IRQ number and associated data structures @@ -1249,6 +1250,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); /** * irq_domain_alloc_irqs_parent - Allocate interrupts from parent domain -- 1.9.1
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH 1/1] irqdomain: Export __irq_domain_alloc_irqs() and irq_domain_free_irqs() Alexander Popov <alex.popov@linux.com> - 2016-07-01 21:40 +0200
Re: [PATCH 1/1] irqdomain: Export __irq_domain_alloc_irqs() and irq_domain_free_irqs() Thomas Gleixner <tglx@linutronix.de> - 2016-07-06 13:30 +0200
Re: [PATCH 1/1] irqdomain: Export __irq_domain_alloc_irqs() and irq_domain_free_irqs() Alexander Popov <alex.popov@linux.com> - 2016-07-08 10:40 +0200
csiph-web