diff options
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/irq/manage.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c index fc16570c9b46..e28db0f656ac 100644 --- a/kernel/irq/manage.c +++ b/kernel/irq/manage.c | |||
@@ -549,6 +549,7 @@ int setup_irq(unsigned int irq, struct irqaction *act) | |||
549 | 549 | ||
550 | return __setup_irq(irq, desc, act); | 550 | return __setup_irq(irq, desc, act); |
551 | } | 551 | } |
552 | EXPORT_SYMBOL_GPL(setup_irq); | ||
552 | 553 | ||
553 | /* | 554 | /* |
554 | * Internal function to unregister an irqaction - used to free | 555 | * Internal function to unregister an irqaction - used to free |
@@ -640,6 +641,7 @@ void remove_irq(unsigned int irq, struct irqaction *act) | |||
640 | { | 641 | { |
641 | __free_irq(irq, act->dev_id); | 642 | __free_irq(irq, act->dev_id); |
642 | } | 643 | } |
644 | EXPORT_SYMBOL_GPL(remove_irq); | ||
643 | 645 | ||
644 | /** | 646 | /** |
645 | * free_irq - free an interrupt allocated with request_irq | 647 | * free_irq - free an interrupt allocated with request_irq |