Export the irq_chip_set_wake_parent symbol so that drivers with hierarchical IRQ chips can be built as a module.
Signed-off-by: Brian Masney masneyb@onstation.org Reported-by: Mark Brown broonie@kernel.org Acked-by: Marc Zyngier marc.zyngier@arm.com --- This fixes a build failure in linux-next's spmi-gpio when using allmodconfig. See https://www.spinics.net/lists/linux-next/msg46362.html for Mark's message.
Changes since v1: - Moved message about build failure out of the commit message and into the notes field.
kernel/irq/chip.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/kernel/irq/chip.c b/kernel/irq/chip.c index 34e969069488..086d5a34b5a0 100644 --- a/kernel/irq/chip.c +++ b/kernel/irq/chip.c @@ -1381,6 +1381,7 @@ int irq_chip_set_wake_parent(struct irq_data *data, unsigned int on)
return -ENOSYS; } +EXPORT_SYMBOL_GPL(irq_chip_set_wake_parent); #endif
/**
Select IRQ_DOMAIN_HIERARCHY for spmi-gpio in Kconfig since this driver is now setup as a hierarchical IRQ chip.
Signed-off-by: Brian Masney masneyb@onstation.org --- Changes since v1: - None
drivers/pinctrl/qcom/Kconfig | 1 + 1 file changed, 1 insertion(+)
diff --git a/drivers/pinctrl/qcom/Kconfig b/drivers/pinctrl/qcom/Kconfig index 836e9f3eae4c..93efbffcd3a4 100644 --- a/drivers/pinctrl/qcom/Kconfig +++ b/drivers/pinctrl/qcom/Kconfig @@ -137,6 +137,7 @@ config PINCTRL_QCOM_SPMI_PMIC select PINMUX select PINCONF select GENERIC_PINCONF + select IRQ_DOMAIN_HIERARCHY help This is the pinctrl, pinmux, pinconf and gpiolib driver for the Qualcomm GPIO and MPP blocks found in the Qualcomm PMIC's chips,
On Mon, Feb 4, 2019 at 10:58 AM Brian Masney masneyb@onstation.org wrote:
Select IRQ_DOMAIN_HIERARCHY for spmi-gpio in Kconfig since this driver is now setup as a hierarchical IRQ chip.
Signed-off-by: Brian Masney masneyb@onstation.org
Changes since v1:
- None
Patch applied!
Yours, Linus Walleij
On Mon, Feb 4, 2019 at 10:58 AM Brian Masney masneyb@onstation.org wrote:
Export the irq_chip_set_wake_parent symbol so that drivers with hierarchical IRQ chips can be built as a module.
Signed-off-by: Brian Masney masneyb@onstation.org Reported-by: Mark Brown broonie@kernel.org Acked-by: Marc Zyngier marc.zyngier@arm.com
This fixes a build failure in linux-next's spmi-gpio when using allmodconfig. See https://www.spinics.net/lists/linux-next/msg46362.html for Mark's message.
Changes since v1:
- Moved message about build failure out of the commit message and into the notes field.
Patch applied to the GPIO tree. Thanks for the quick fixes!
Yours, Linus Walleij
linaro-kernel@lists.linaro.org