public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [RESEND v2] phy: hi6220: Add missing MFD_SYSCON dependency on HAS_IOMEM
@ 2016-03-30  0:49 Krzysztof Kozlowski
  2016-03-30  8:08 ` Lee Jones
  0 siblings, 1 reply; 5+ messages in thread
From: Krzysztof Kozlowski @ 2016-03-30  0:49 UTC (permalink / raw)
  To: Kishon Vijay Abraham I, linux-kernel; +Cc: Lee Jones, Krzysztof Kozlowski

The MFD_SYSCON depends on HAS_IOMEM so when selecting it avoid unmet
direct dependencies.

This fixes warning on allyesconfig on ARCH=um:

warning: (ST_IRQCHIP && HIP04_ETH && STMMAC_PLATFORM && DWMAC_IPQ806X &&
	DWMAC_LPC18XX && DWMAC_ROCKCHIP && DWMAC_SOCFPGA && DWMAC_STI && TI_CPSW
	&& PINCTRL_ROCKCHIP && PINCTRL_DOVE && POWER_RESET_KEYSTONE &&
	S3C2410_WATCHDOG && VIDEO_OMAP3 && VIDEO_S5P_FIMC && USB_XHCI_MTK &&
	RTC_DRV_AT91SAM9 && LPC18XX_DMAMUX && VIDEO_OMAP4 && HWSPINLOCK_QCOM &&
	ATMEL_ST && QCOM_GSBI && PHY_HI6220_USB)
selects MFD_SYSCON which has unmet direct dependencies (HAS_IOMEM)

Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Acked-by: Lee Jones <lee.jones@linaro.org>

---

Changes since v1:
1. Remove the comment why HAS_IOMEM dependency was added.
2. Exdended description.
---
 drivers/phy/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/phy/Kconfig b/drivers/phy/Kconfig
index 879ac798f6f7..17e5f5c7ffff 100644
--- a/drivers/phy/Kconfig
+++ b/drivers/phy/Kconfig
@@ -226,6 +226,7 @@ config PHY_MT65XX_USB3
 config PHY_HI6220_USB
 	tristate "hi6220 USB PHY support"
 	depends on (ARCH_HISI && ARM64) || COMPILE_TEST
+	depends on HAS_IOMEM
 	select GENERIC_PHY
 	select MFD_SYSCON
 	help
-- 
2.5.0

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

* Re: [RESEND v2] phy: hi6220: Add missing MFD_SYSCON dependency on HAS_IOMEM
  2016-03-30  0:49 [RESEND v2] phy: hi6220: Add missing MFD_SYSCON dependency on HAS_IOMEM Krzysztof Kozlowski
@ 2016-03-30  8:08 ` Lee Jones
  2016-03-30  8:10   ` Lee Jones
  0 siblings, 1 reply; 5+ messages in thread
From: Lee Jones @ 2016-03-30  8:08 UTC (permalink / raw)
  To: Krzysztof Kozlowski; +Cc: Kishon Vijay Abraham I, linux-kernel

On Wed, 30 Mar 2016, Krzysztof Kozlowski wrote:

> The MFD_SYSCON depends on HAS_IOMEM so when selecting it avoid unmet
> direct dependencies.
> 
> This fixes warning on allyesconfig on ARCH=um:
> 
> warning: (ST_IRQCHIP && HIP04_ETH && STMMAC_PLATFORM && DWMAC_IPQ806X &&
> 	DWMAC_LPC18XX && DWMAC_ROCKCHIP && DWMAC_SOCFPGA && DWMAC_STI && TI_CPSW
> 	&& PINCTRL_ROCKCHIP && PINCTRL_DOVE && POWER_RESET_KEYSTONE &&
> 	S3C2410_WATCHDOG && VIDEO_OMAP3 && VIDEO_S5P_FIMC && USB_XHCI_MTK &&
> 	RTC_DRV_AT91SAM9 && LPC18XX_DMAMUX && VIDEO_OMAP4 && HWSPINLOCK_QCOM &&
> 	ATMEL_ST && QCOM_GSBI && PHY_HI6220_USB)
> selects MFD_SYSCON which has unmet direct dependencies (HAS_IOMEM)
> 
> Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
> Acked-by: Lee Jones <lee.jones@linaro.org>

Holding off on this until the discussion reaches some kind of
consensus.

> ---
> 
> Changes since v1:
> 1. Remove the comment why HAS_IOMEM dependency was added.
> 2. Exdended description.
> ---
>  drivers/phy/Kconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/phy/Kconfig b/drivers/phy/Kconfig
> index 879ac798f6f7..17e5f5c7ffff 100644
> --- a/drivers/phy/Kconfig
> +++ b/drivers/phy/Kconfig
> @@ -226,6 +226,7 @@ config PHY_MT65XX_USB3
>  config PHY_HI6220_USB
>  	tristate "hi6220 USB PHY support"
>  	depends on (ARCH_HISI && ARM64) || COMPILE_TEST
> +	depends on HAS_IOMEM
>  	select GENERIC_PHY
>  	select MFD_SYSCON
>  	help

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

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

* Re: [RESEND v2] phy: hi6220: Add missing MFD_SYSCON dependency on HAS_IOMEM
  2016-03-30  8:08 ` Lee Jones
@ 2016-03-30  8:10   ` Lee Jones
  2016-03-30  8:24     ` Krzysztof Kozlowski
  0 siblings, 1 reply; 5+ messages in thread
From: Lee Jones @ 2016-03-30  8:10 UTC (permalink / raw)
  To: Krzysztof Kozlowski; +Cc: Kishon Vijay Abraham I, linux-kernel

On Wed, 30 Mar 2016, Lee Jones wrote:

> On Wed, 30 Mar 2016, Krzysztof Kozlowski wrote:
> 
> > The MFD_SYSCON depends on HAS_IOMEM so when selecting it avoid unmet
> > direct dependencies.
> > 
> > This fixes warning on allyesconfig on ARCH=um:
> > 
> > warning: (ST_IRQCHIP && HIP04_ETH && STMMAC_PLATFORM && DWMAC_IPQ806X &&
> > 	DWMAC_LPC18XX && DWMAC_ROCKCHIP && DWMAC_SOCFPGA && DWMAC_STI && TI_CPSW
> > 	&& PINCTRL_ROCKCHIP && PINCTRL_DOVE && POWER_RESET_KEYSTONE &&
> > 	S3C2410_WATCHDOG && VIDEO_OMAP3 && VIDEO_S5P_FIMC && USB_XHCI_MTK &&
> > 	RTC_DRV_AT91SAM9 && LPC18XX_DMAMUX && VIDEO_OMAP4 && HWSPINLOCK_QCOM &&
> > 	ATMEL_ST && QCOM_GSBI && PHY_HI6220_USB)
> > selects MFD_SYSCON which has unmet direct dependencies (HAS_IOMEM)
> > 
> > Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
> > Acked-by: Lee Jones <lee.jones@linaro.org>
> 
> Holding off on this until the discussion reaches some kind of
> consensus.

FYI: https://lkml.org/lkml/2016/3/29/716

> > ---
> > 
> > Changes since v1:
> > 1. Remove the comment why HAS_IOMEM dependency was added.
> > 2. Exdended description.
> > ---
> >  drivers/phy/Kconfig | 1 +
> >  1 file changed, 1 insertion(+)
> > 
> > diff --git a/drivers/phy/Kconfig b/drivers/phy/Kconfig
> > index 879ac798f6f7..17e5f5c7ffff 100644
> > --- a/drivers/phy/Kconfig
> > +++ b/drivers/phy/Kconfig
> > @@ -226,6 +226,7 @@ config PHY_MT65XX_USB3
> >  config PHY_HI6220_USB
> >  	tristate "hi6220 USB PHY support"
> >  	depends on (ARCH_HISI && ARM64) || COMPILE_TEST
> > +	depends on HAS_IOMEM
> >  	select GENERIC_PHY
> >  	select MFD_SYSCON
> >  	help
> 

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

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

* Re: [RESEND v2] phy: hi6220: Add missing MFD_SYSCON dependency on HAS_IOMEM
  2016-03-30  8:10   ` Lee Jones
@ 2016-03-30  8:24     ` Krzysztof Kozlowski
  2016-04-07 13:23       ` Kishon Vijay Abraham I
  0 siblings, 1 reply; 5+ messages in thread
From: Krzysztof Kozlowski @ 2016-03-30  8:24 UTC (permalink / raw)
  To: Lee Jones; +Cc: Kishon Vijay Abraham I, linux-kernel

On 30.03.2016 17:10, Lee Jones wrote:
> On Wed, 30 Mar 2016, Lee Jones wrote:
> 
>> On Wed, 30 Mar 2016, Krzysztof Kozlowski wrote:
>>
>>> The MFD_SYSCON depends on HAS_IOMEM so when selecting it avoid unmet
>>> direct dependencies.
>>>
>>> This fixes warning on allyesconfig on ARCH=um:
>>>
>>> warning: (ST_IRQCHIP && HIP04_ETH && STMMAC_PLATFORM && DWMAC_IPQ806X &&
>>> 	DWMAC_LPC18XX && DWMAC_ROCKCHIP && DWMAC_SOCFPGA && DWMAC_STI && TI_CPSW
>>> 	&& PINCTRL_ROCKCHIP && PINCTRL_DOVE && POWER_RESET_KEYSTONE &&
>>> 	S3C2410_WATCHDOG && VIDEO_OMAP3 && VIDEO_S5P_FIMC && USB_XHCI_MTK &&
>>> 	RTC_DRV_AT91SAM9 && LPC18XX_DMAMUX && VIDEO_OMAP4 && HWSPINLOCK_QCOM &&
>>> 	ATMEL_ST && QCOM_GSBI && PHY_HI6220_USB)
>>> selects MFD_SYSCON which has unmet direct dependencies (HAS_IOMEM)
>>>
>>> Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
>>> Acked-by: Lee Jones <lee.jones@linaro.org>
>>
>> Holding off on this until the discussion reaches some kind of
>> consensus.
> 
> FYI: https://lkml.org/lkml/2016/3/29/716

Yes, Rob's solution looks better to me.

BR,
Krzysztof

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

* Re: [RESEND v2] phy: hi6220: Add missing MFD_SYSCON dependency on HAS_IOMEM
  2016-03-30  8:24     ` Krzysztof Kozlowski
@ 2016-04-07 13:23       ` Kishon Vijay Abraham I
  0 siblings, 0 replies; 5+ messages in thread
From: Kishon Vijay Abraham I @ 2016-04-07 13:23 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Lee Jones; +Cc: linux-kernel


On Wednesday 30 March 2016 01:54 PM, Krzysztof Kozlowski wrote:
> On 30.03.2016 17:10, Lee Jones wrote:
>> On Wed, 30 Mar 2016, Lee Jones wrote:
>>
>>> On Wed, 30 Mar 2016, Krzysztof Kozlowski wrote:
>>>
>>>> The MFD_SYSCON depends on HAS_IOMEM so when selecting it avoid unmet
>>>> direct dependencies.
>>>>
>>>> This fixes warning on allyesconfig on ARCH=um:
>>>>
>>>> warning: (ST_IRQCHIP && HIP04_ETH && STMMAC_PLATFORM && DWMAC_IPQ806X &&
>>>> 	DWMAC_LPC18XX && DWMAC_ROCKCHIP && DWMAC_SOCFPGA && DWMAC_STI && TI_CPSW
>>>> 	&& PINCTRL_ROCKCHIP && PINCTRL_DOVE && POWER_RESET_KEYSTONE &&
>>>> 	S3C2410_WATCHDOG && VIDEO_OMAP3 && VIDEO_S5P_FIMC && USB_XHCI_MTK &&
>>>> 	RTC_DRV_AT91SAM9 && LPC18XX_DMAMUX && VIDEO_OMAP4 && HWSPINLOCK_QCOM &&
>>>> 	ATMEL_ST && QCOM_GSBI && PHY_HI6220_USB)
>>>> selects MFD_SYSCON which has unmet direct dependencies (HAS_IOMEM)
>>>>
>>>> Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
>>>> Acked-by: Lee Jones <lee.jones@linaro.org>
>>>
>>> Holding off on this until the discussion reaches some kind of
>>> consensus.
>>
>> FYI: https://lkml.org/lkml/2016/3/29/716
> 
> Yes, Rob's solution looks better to me.

+1
-
> 
> BR,
> Krzysztof
> 

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

end of thread, other threads:[~2016-04-07 13:23 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-30  0:49 [RESEND v2] phy: hi6220: Add missing MFD_SYSCON dependency on HAS_IOMEM Krzysztof Kozlowski
2016-03-30  8:08 ` Lee Jones
2016-03-30  8:10   ` Lee Jones
2016-03-30  8:24     ` Krzysztof Kozlowski
2016-04-07 13:23       ` Kishon Vijay Abraham I

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox