diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2022-10-31 10:39:52 -0500 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2022-11-10 14:53:45 -0600 |
commit | 763d25e7affe13c7be923fec6192ca6325f33c73 (patch) | |
tree | d42e468a5902996a96ef0074f430171536826f26 /drivers/pci | |
parent | 606a0430b37af4a1dd3e1e3baaf073b42fbb53e3 (diff) | |
download | linux-763d25e7affe13c7be923fec6192ca6325f33c73.tar.gz |
PCI: mvebu: Include <linux/irqdomain.h> explicitly
pci-mvebu.c uses irq_domain_add_linear() and related interfaces but relies
on <linux/irqdomain.h> but doesn't include it directly; it relies on the
fact that <linux/of_irq.h> includes it.
Include <linux/irqdomain.h> directly to remove this implicit dependency.
Link: https://lore.kernel.org/r/20221031153954.1163623-4-helgaas@kernel.org
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'drivers/pci')
-rw-r--r-- | drivers/pci/controller/pci-mvebu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pci/controller/pci-mvebu.c b/drivers/pci/controller/pci-mvebu.c index 1ced73726a26..73db99035c2b 100644 --- a/drivers/pci/controller/pci-mvebu.c +++ b/drivers/pci/controller/pci-mvebu.c @@ -13,6 +13,7 @@ #include <linux/delay.h> #include <linux/gpio.h> #include <linux/init.h> +#include <linux/irqdomain.h> #include <linux/mbus.h> #include <linux/slab.h> #include <linux/platform_device.h> |