phy: uniphier-pcie: Depend on HAS_IOMEM
authorKunihiko Hayashi <hayashi.kunihiko@socionext.com>
Mon, 15 Oct 2018 01:31:30 +0000 (10:31 +0900)
committerKishon Vijay Abraham I <kishon@ti.com>
Mon, 12 Nov 2018 10:49:06 +0000 (16:19 +0530)
The driver uses devm_ioremap_resource() which is only available when
CONFIG_HAS_IOMEM is set, so the driver depends on this option.

Signed-off-by: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
drivers/phy/socionext/Kconfig

index 467e814..9c85231 100644 (file)
@@ -26,7 +26,8 @@ config PHY_UNIPHIER_USB3
 
 config PHY_UNIPHIER_PCIE
        tristate "Uniphier PHY driver for PCIe controller"
-       depends on (ARCH_UNIPHIER || COMPILE_TEST) && OF
+       depends on ARCH_UNIPHIER || COMPILE_TEST
+       depends on OF && HAS_IOMEM
        default PCIE_UNIPHIER
        select GENERIC_PHY
        help