linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] PCI: artpec: add PCI_MSI_IRQ_DOMAIN dependency
@ 2016-07-06 12:46 Arnd Bergmann
  2016-07-13 23:11 ` Niklas Cassel
  2016-07-29 22:34 ` Bjorn Helgaas
  0 siblings, 2 replies; 3+ messages in thread
From: Arnd Bergmann @ 2016-07-06 12:46 UTC (permalink / raw)
  To: Bjorn Helgaas; +Cc: Niklas Cassel, Arnd Bergmann, linux-pci, linux-kernel

The designware PCIe driver requires MSI support, so we get a warning
for the artpec6 glue driver if that is not enabled:

warning: (PCIE_ARTPEC6) selects PCIE_DW which has unmet direct dependencies (PCI && PCI_MSI_IRQ_DOMAIN)

This adds the same dependency that all other such drivers have.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
 drivers/pci/host/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/pci/host/Kconfig b/drivers/pci/host/Kconfig
index c917e2fede05..a1ef0c06dbb4 100644
--- a/drivers/pci/host/Kconfig
+++ b/drivers/pci/host/Kconfig
@@ -258,6 +258,7 @@ config PCIE_ARMADA_8K
 config PCIE_ARTPEC6
 	bool "Axis ARTPEC-6 PCIe controller"
 	depends on MACH_ARTPEC6
+	depends on PCI_MSI_IRQ_DOMAIN
 	select PCIE_DW
 	select PCIEPORTBUS
 	help
-- 
2.9.0

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

* Re: [PATCH] PCI: artpec: add PCI_MSI_IRQ_DOMAIN dependency
  2016-07-06 12:46 [PATCH] PCI: artpec: add PCI_MSI_IRQ_DOMAIN dependency Arnd Bergmann
@ 2016-07-13 23:11 ` Niklas Cassel
  2016-07-29 22:34 ` Bjorn Helgaas
  1 sibling, 0 replies; 3+ messages in thread
From: Niklas Cassel @ 2016-07-13 23:11 UTC (permalink / raw)
  To: Arnd Bergmann, Bjorn Helgaas; +Cc: linux-pci, linux-kernel

Acked-by: Niklas Cassel <niklas.cassel@axis.com>


On 07/06/2016 02:46 PM, Arnd Bergmann wrote:
> The designware PCIe driver requires MSI support, so we get a warning
> for the artpec6 glue driver if that is not enabled:
>
> warning: (PCIE_ARTPEC6) selects PCIE_DW which has unmet direct dependencies (PCI && PCI_MSI_IRQ_DOMAIN)
>
> This adds the same dependency that all other such drivers have.
>
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> ---
>  drivers/pci/host/Kconfig | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/drivers/pci/host/Kconfig b/drivers/pci/host/Kconfig
> index c917e2fede05..a1ef0c06dbb4 100644
> --- a/drivers/pci/host/Kconfig
> +++ b/drivers/pci/host/Kconfig
> @@ -258,6 +258,7 @@ config PCIE_ARMADA_8K
>  config PCIE_ARTPEC6
>  	bool "Axis ARTPEC-6 PCIe controller"
>  	depends on MACH_ARTPEC6
> +	depends on PCI_MSI_IRQ_DOMAIN
>  	select PCIE_DW
>  	select PCIEPORTBUS
>  	help

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

* Re: [PATCH] PCI: artpec: add PCI_MSI_IRQ_DOMAIN dependency
  2016-07-06 12:46 [PATCH] PCI: artpec: add PCI_MSI_IRQ_DOMAIN dependency Arnd Bergmann
  2016-07-13 23:11 ` Niklas Cassel
@ 2016-07-29 22:34 ` Bjorn Helgaas
  1 sibling, 0 replies; 3+ messages in thread
From: Bjorn Helgaas @ 2016-07-29 22:34 UTC (permalink / raw)
  To: Arnd Bergmann; +Cc: Bjorn Helgaas, Niklas Cassel, linux-pci, linux-kernel

On Wed, Jul 06, 2016 at 02:46:04PM +0200, Arnd Bergmann wrote:
> The designware PCIe driver requires MSI support, so we get a warning
> for the artpec6 glue driver if that is not enabled:
> 
> warning: (PCIE_ARTPEC6) selects PCIE_DW which has unmet direct dependencies (PCI && PCI_MSI_IRQ_DOMAIN)
> 
> This adds the same dependency that all other such drivers have.
> 
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>

Applied to pci/host-artpec with Niklas's ack for v4.8.

> ---
>  drivers/pci/host/Kconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/pci/host/Kconfig b/drivers/pci/host/Kconfig
> index c917e2fede05..a1ef0c06dbb4 100644
> --- a/drivers/pci/host/Kconfig
> +++ b/drivers/pci/host/Kconfig
> @@ -258,6 +258,7 @@ config PCIE_ARMADA_8K
>  config PCIE_ARTPEC6
>  	bool "Axis ARTPEC-6 PCIe controller"
>  	depends on MACH_ARTPEC6
> +	depends on PCI_MSI_IRQ_DOMAIN
>  	select PCIE_DW
>  	select PCIEPORTBUS
>  	help
> -- 
> 2.9.0
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-pci" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2016-07-29 22:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-06 12:46 [PATCH] PCI: artpec: add PCI_MSI_IRQ_DOMAIN dependency Arnd Bergmann
2016-07-13 23:11 ` Niklas Cassel
2016-07-29 22:34 ` Bjorn Helgaas

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).