]> Git Repo - linux.git/commitdiff
genirq/generic_chip: Export irq_gc_mask_disable_and_ack_set()
authorDr. David Alan Gilbert <[email protected]>
Thu, 16 Jan 2025 00:59:20 +0000 (00:59 +0000)
committerThomas Gleixner <[email protected]>
Thu, 16 Jan 2025 08:10:17 +0000 (09:10 +0100)
The recent conversion of brcmstb_l2_mask_and_ack() to
irq_gc_mask_disable_and_ack_set() missed that the driver can be built as a
module, but the generic function is not exported.

Add the missing export.

[ tglx: Converted it to a fix ]

Fixes: dd1f17a9faf5 ("irqchip/irq-brcmstb-l2: Replace brcmstb_l2_mask_and_ack() by generic function")
Signed-off-by: Dr. David Alan Gilbert <[email protected]>
Signed-off-by: Thomas Gleixner <[email protected]>
Link: https://lore.kernel.org/all/[email protected]
kernel/irq/generic-chip.c

index 32ffcbb87fa126cc32c2cb45434415d08e79a4a7..c4a8bca5f2b0fb7cf3b0b8d373f02b6aa3b6de82 100644 (file)
@@ -162,6 +162,7 @@ void irq_gc_mask_disable_and_ack_set(struct irq_data *d)
        irq_reg_writel(gc, mask, ct->regs.ack);
        irq_gc_unlock(gc);
 }
+EXPORT_SYMBOL_GPL(irq_gc_mask_disable_and_ack_set);
 
 /**
  * irq_gc_eoi - EOI interrupt
This page took 0.051623 seconds and 4 git commands to generate.