All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] net: dsa: lantiq_gswip: Depend on HAS_IOMEM
@ 2018-09-25 19:55 Hauke Mehrtens
  2018-09-26  3:27 ` David Miller
  0 siblings, 1 reply; 2+ messages in thread
From: Hauke Mehrtens @ 2018-09-25 19:55 UTC (permalink / raw)
  To: davem; +Cc: netdev, f.fainelli, andrew, vivien.didelot, Hauke Mehrtens

The driver uses devm_ioremap_resource() which is only available when
CONFIG_HAS_IOMEM is set, make the driver depend on this config option.
User mode Linux does not have CONFIG_HAS_IOMEM set and the driver was
failing on this architecture.

Fixes: 14fceff4771e ("net: dsa: Add Lantiq / Intel DSA driver for vrx200")
Reported-by: kbuild test robot <lkp@intel.com>
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
---
 drivers/net/dsa/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/dsa/Kconfig b/drivers/net/dsa/Kconfig
index 7c09d8f195ae..71bb3aebded4 100644
--- a/drivers/net/dsa/Kconfig
+++ b/drivers/net/dsa/Kconfig
@@ -25,7 +25,7 @@ config NET_DSA_LOOP
 
 config NET_DSA_LANTIQ_GSWIP
 	tristate "Lantiq / Intel GSWIP"
-	depends on NET_DSA
+	depends on HAS_IOMEM && NET_DSA
 	select NET_DSA_TAG_GSWIP
 	---help---
 	  This enables support for the Lantiq / Intel GSWIP 2.1 found in
-- 
2.11.0

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

* Re: [PATCH] net: dsa: lantiq_gswip: Depend on HAS_IOMEM
  2018-09-25 19:55 [PATCH] net: dsa: lantiq_gswip: Depend on HAS_IOMEM Hauke Mehrtens
@ 2018-09-26  3:27 ` David Miller
  0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2018-09-26  3:27 UTC (permalink / raw)
  To: hauke; +Cc: netdev, f.fainelli, andrew, vivien.didelot

From: Hauke Mehrtens <hauke@hauke-m.de>
Date: Tue, 25 Sep 2018 21:55:33 +0200

> The driver uses devm_ioremap_resource() which is only available when
> CONFIG_HAS_IOMEM is set, make the driver depend on this config option.
> User mode Linux does not have CONFIG_HAS_IOMEM set and the driver was
> failing on this architecture.
> 
> Fixes: 14fceff4771e ("net: dsa: Add Lantiq / Intel DSA driver for vrx200")
> Reported-by: kbuild test robot <lkp@intel.com>
> Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>

Applied to net-next.

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

end of thread, other threads:[~2018-09-26  9:38 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-25 19:55 [PATCH] net: dsa: lantiq_gswip: Depend on HAS_IOMEM Hauke Mehrtens
2018-09-26  3:27 ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.