From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752873AbbGOMqy (ORCPT ); Wed, 15 Jul 2015 08:46:54 -0400 Received: from comal.ext.ti.com ([198.47.26.152]:36689 "EHLO comal.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751818AbbGOMqT (ORCPT ); Wed, 15 Jul 2015 08:46:19 -0400 Message-ID: <55A65614.1020403@ti.com> Date: Wed, 15 Jul 2015 18:16:12 +0530 From: Kishon Vijay Abraham I User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.0 MIME-Version: 1.0 To: Sebastian Ott , Rob Herring CC: Subject: Re: [PATCH] phy/pxa: add HAS_IOMEM dependency References: In-Reply-To: Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, On Monday 29 June 2015 08:27 PM, Sebastian Ott wrote: > Fix this compile error: > > drivers/built-in.o: In function 'mv_usb2_phy_probe': > phy-pxa-28nm-usb2.c:(.text+0x25ec): undefined reference to 'devm_ioremap_resource' > drivers/built-in.o: In function 'mv_hsic_phy_probe': > phy-pxa-28nm-hsic.c:(.text+0x3084): undefined reference to 'devm_ioremap_resource' > > Signed-off-by: Sebastian Ott merged this to linux-phy tree. Cheers Kishon > --- > drivers/phy/Kconfig | 2 ++ > 1 file changed, 2 insertions(+) > > --- a/drivers/phy/Kconfig > +++ b/drivers/phy/Kconfig > @@ -56,6 +56,7 @@ config PHY_EXYNOS_MIPI_VIDEO > > config PHY_PXA_28NM_HSIC > tristate "Marvell USB HSIC 28nm PHY Driver" > + depends on HAS_IOMEM > select GENERIC_PHY > help > Enable this to support Marvell USB HSIC PHY driver for Marvell > @@ -66,6 +67,7 @@ config PHY_PXA_28NM_HSIC > > config PHY_PXA_28NM_USB2 > tristate "Marvell USB 2.0 28nm PHY Driver" > + depends on HAS_IOMEM > select GENERIC_PHY > help > Enable this to support Marvell USB 2.0 PHY driver for Marvell >