Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1349739 > unrolled thread

[PATCH] phy: Fix build error of missing devm_ioremap_resource on UM

Started byKrzysztof Kozlowski <k.kozlowski@samsung.com>
First post2016-03-04 02:10 +0100
Last post2016-03-04 02:10 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] phy: Fix build error of missing devm_ioremap_resource on UM Krzysztof Kozlowski <k.kozlowski@samsung.com> - 2016-03-04 02:10 +0100

#1349739 — [PATCH] phy: Fix build error of missing devm_ioremap_resource on UM

FromKrzysztof Kozlowski <k.kozlowski@samsung.com>
Date2016-03-04 02:10 +0100
Subject[PATCH] phy: Fix build error of missing devm_ioremap_resource on UM
Message-ID<r8MpI-7h0-3@gated-at.bofh.it>
The devres.o gets linked if HAS_IOMEM is present so on ARCH=um
allyesconfig (COMPILE_TEST) failed with:

drivers/built-in.o: In function `omap_control_phy_probe':
phy-omap-control.c:(.text+0x16db): undefined reference to `devm_ioremap_resource'
drivers/built-in.o: In function `cygnus_pcie_phy_probe':
phy-bcm-cygnus-pcie.c:(.text+0x1bfa): undefined reference to `devm_ioremap_resource'

Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
---
 drivers/phy/Kconfig | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/phy/Kconfig b/drivers/phy/Kconfig
index cfdb3551a675..1c8363d68d38 100644
--- a/drivers/phy/Kconfig
+++ b/drivers/phy/Kconfig
@@ -128,6 +128,7 @@ config PHY_RCAR_GEN3_USB2
 config OMAP_CONTROL_PHY
 	tristate "OMAP CONTROL PHY Driver"
 	depends on ARCH_OMAP2PLUS || COMPILE_TEST
+	depends on HAS_IOMEM
 	help
 	  Enable this to add support for the PHY part present in the control
 	  module. This driver has API to power on the USB2 PHY and to write to
@@ -402,6 +403,7 @@ config PHY_BRCMSTB_SATA
 config PHY_CYGNUS_PCIE
 	tristate "Broadcom Cygnus PCIe PHY driver"
 	depends on OF && (ARCH_BCM_CYGNUS || COMPILE_TEST)
+	depends on HAS_IOMEM
 	select GENERIC_PHY
 	default ARCH_BCM_CYGNUS
 	help
-- 
2.5.0

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web