mirror of https://github.com/torvalds/linux.git
irqchip/irq-riscv-imsic-early: Export imsic_acpi_get_fwnode()
ACPI based loadable drivers which need MSIs will also need imsic_acpi_get_fwnode() to update the device MSI domain so export this function. Reviewed-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Sunil V L <sunilvl@ventanamicro.com> Signed-off-by: Anup Patel <apatel@ventanamicro.com> Link: https://lore.kernel.org/r/20250818040920.272664-21-apatel@ventanamicro.com Signed-off-by: Paul Walmsley <pjw@kernel.org>
This commit is contained in:
parent
bb96fb5a79
commit
3f5d7a5c05
|
|
@ -7,6 +7,7 @@
|
|||
#define pr_fmt(fmt) "riscv-imsic: " fmt
|
||||
#include <linux/acpi.h>
|
||||
#include <linux/cpu.h>
|
||||
#include <linux/export.h>
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/io.h>
|
||||
|
|
@ -233,6 +234,7 @@ struct fwnode_handle *imsic_acpi_get_fwnode(struct device *dev)
|
|||
{
|
||||
return imsic_acpi_fwnode;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(imsic_acpi_get_fwnode);
|
||||
|
||||
static int __init imsic_early_acpi_init(union acpi_subtable_headers *header,
|
||||
const unsigned long end)
|
||||
|
|
|
|||
Loading…
Reference in New Issue