Skip to content

Commit 817aad5

Browse files
author
Marc Zyngier
committed
irqdomain: Drop references to recusive irqdomain setup
It was never completely implemented, and was removed a long time ago. Adjust the documentation to reflect this. Signed-off-by: Marc Zyngier <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent 1a0b05e commit 817aad5

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

kernel/irq/irqdomain.c

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1659,12 +1659,10 @@ void irq_domain_free_irqs(unsigned int virq, unsigned int nr_irqs)
16591659

16601660
/**
16611661
* irq_domain_alloc_irqs_parent - Allocate interrupts from parent domain
1662+
* @domain: Domain below which interrupts must be allocated
16621663
* @irq_base: Base IRQ number
16631664
* @nr_irqs: Number of IRQs to allocate
16641665
* @arg: Allocation data (arch/domain specific)
1665-
*
1666-
* Check whether the domain has been setup recursive. If not allocate
1667-
* through the parent domain.
16681666
*/
16691667
int irq_domain_alloc_irqs_parent(struct irq_domain *domain,
16701668
unsigned int irq_base, unsigned int nr_irqs,
@@ -1680,11 +1678,9 @@ EXPORT_SYMBOL_GPL(irq_domain_alloc_irqs_parent);
16801678

16811679
/**
16821680
* irq_domain_free_irqs_parent - Free interrupts from parent domain
1681+
* @domain: Domain below which interrupts must be freed
16831682
* @irq_base: Base IRQ number
16841683
* @nr_irqs: Number of IRQs to free
1685-
*
1686-
* Check whether the domain has been setup recursive. If not free
1687-
* through the parent domain.
16881684
*/
16891685
void irq_domain_free_irqs_parent(struct irq_domain *domain,
16901686
unsigned int irq_base, unsigned int nr_irqs)

0 commit comments

Comments
 (0)