linux-next.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH -next 1/2] genirq: export irq_chip_set_wake_parent symbol
@ 2019-02-03 12:31 Brian Masney
  2019-02-03 12:31 ` [PATCH -next 2/2] pinctrl: qcom: spmi-gpio: select IRQ_DOMAIN_HIERARCHY in Kconfig Brian Masney
  2019-02-03 13:05 ` [PATCH -next 1/2] genirq: export irq_chip_set_wake_parent symbol Marc Zyngier
  0 siblings, 2 replies; 3+ messages in thread
From: Brian Masney @ 2019-02-03 12:31 UTC (permalink / raw)
  To: linus.walleij, tglx, marc.zyngier
  Cc: andy.gross, sboyd, kernel-build-reports, linaro-kernel,
	linux-next, linux-arm-kernel, linux-arm-msm, linux-gpio,
	bjorn.andersson, linux-kernel

Export the irq_chip_set_wake_parent symbol so that drivers with
hierarchical IRQ chips can be built as a module.

This fixes a build failure in linux-next's spmi-gpio when using
allmodconfig.

Signed-off-by: Brian Masney <masneyb@onstation.org>
Reported-by: Mark Brown <broonie@kernel.org>
---
See https://www.spinics.net/lists/linux-next/msg46362.html for Mark's
message.

 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
 
 /**
-- 
2.17.2

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH -next 2/2] pinctrl: qcom: spmi-gpio: select IRQ_DOMAIN_HIERARCHY in Kconfig
  2019-02-03 12:31 [PATCH -next 1/2] genirq: export irq_chip_set_wake_parent symbol Brian Masney
@ 2019-02-03 12:31 ` Brian Masney
  2019-02-03 13:05 ` [PATCH -next 1/2] genirq: export irq_chip_set_wake_parent symbol Marc Zyngier
  1 sibling, 0 replies; 3+ messages in thread
From: Brian Masney @ 2019-02-03 12:31 UTC (permalink / raw)
  To: linus.walleij, tglx, marc.zyngier
  Cc: linaro-kernel, kernel-build-reports, sboyd, linux-arm-msm,
	linux-kernel, bjorn.andersson, linux-gpio, linux-next,
	andy.gross, linux-arm-kernel

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>
---
 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,
-- 
2.17.2

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH -next 1/2] genirq: export irq_chip_set_wake_parent symbol
  2019-02-03 12:31 [PATCH -next 1/2] genirq: export irq_chip_set_wake_parent symbol Brian Masney
  2019-02-03 12:31 ` [PATCH -next 2/2] pinctrl: qcom: spmi-gpio: select IRQ_DOMAIN_HIERARCHY in Kconfig Brian Masney
@ 2019-02-03 13:05 ` Marc Zyngier
  1 sibling, 0 replies; 3+ messages in thread
From: Marc Zyngier @ 2019-02-03 13:05 UTC (permalink / raw)
  To: Brian Masney
  Cc: linus.walleij, tglx, andy.gross, sboyd, kernel-build-reports,
	linaro-kernel, linux-next, linux-arm-kernel, linux-arm-msm,
	linux-gpio, bjorn.andersson, linux-kernel

On Sun,  3 Feb 2019 07:31:30 -0500
Brian Masney <masneyb@onstation.org> wrote:

Hi Brian,

> Export the irq_chip_set_wake_parent symbol so that drivers with
> hierarchical IRQ chips can be built as a module.
> 
> This fixes a build failure in linux-next's spmi-gpio when using
> allmodconfig.

I don't think the mention of linux-next helps in the commit message. It
would have been better together with the note below.

> 
> Signed-off-by: Brian Masney <masneyb@onstation.org>
> Reported-by: Mark Brown <broonie@kernel.org>

Otherwise:

Acked-by: Marc Zyngier <marc.zyngier@arm.com>

Thanks,

	M.

> ---
> See https://www.spinics.net/lists/linux-next/msg46362.html for Mark's
> message.
> 
>  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
>  
>  /**



-- 
Without deviation from the norm, progress is not possible.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-02-03 13:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-03 12:31 [PATCH -next 1/2] genirq: export irq_chip_set_wake_parent symbol Brian Masney
2019-02-03 12:31 ` [PATCH -next 2/2] pinctrl: qcom: spmi-gpio: select IRQ_DOMAIN_HIERARCHY in Kconfig Brian Masney
2019-02-03 13:05 ` [PATCH -next 1/2] genirq: export irq_chip_set_wake_parent symbol Marc Zyngier

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).