lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:   Wed, 8 Jan 2020 10:10:59 +0800
From:   Hongbo Yao <yaohongbo@...wei.com>
To:     <kishon@...com>, <p.zabel@...gutronix.de>, <jsarha@...com>
CC:     <yaohongbo@...wei.com>, <chenzhou10@...wei.com>,
        <linux-kernel@...r.kernel.org>
Subject: [PATCH -next] phy: ti: Fix build error without CONFIG_OF_ADDRESS

If CONFIG_OF_ADDRESS is not set and COMPILE_TEST=y.
Building phy-j721e-wiz will get the following error:

drivers/phy/ti/phy-j721e-wiz.o: In function `wiz_remove':
phy-j721e-wiz.c:(.text+0x1a): undefined reference to
`of_platform_device_destroy'

Correct the config for PHY_J721E_WIZ.

Reported-by: Hulk Robot <hulkci@...wei.com>
Fixes: 42440de5438a0("phy: ti: j721e-wiz: Add support for WIZ
module present in TI J721E SoC")
Signed-off-by: Hongbo Yao <yaohongbo@...wei.com>
---
 drivers/phy/ti/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/phy/ti/Kconfig b/drivers/phy/ti/Kconfig
index 3a1d3887c99c..f904aebf24a9 100644
--- a/drivers/phy/ti/Kconfig
+++ b/drivers/phy/ti/Kconfig
@@ -35,7 +35,7 @@ config PHY_AM654_SERDES
 
 config PHY_J721E_WIZ
 	tristate "TI J721E WIZ (SERDES Wrapper) support"
-	depends on OF && ARCH_K3 || COMPILE_TEST
+	depends on OF && HAS_IOMEM && (ARCH_K3 || COMPILE_TEST)
 	depends on COMMON_CLK
 	select GENERIC_PHY
 	select MULTIPLEXER
-- 
2.20.1

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ