linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] drivers: Kconfig: Add HAS_IOMEM dependency for allmodconfig under score architecture
@ 2014-06-10 12:04 Chen Gang
  2014-06-10 12:20 ` Chen Gang
  0 siblings, 1 reply; 3+ messages in thread
From: Chen Gang @ 2014-06-10 12:04 UTC (permalink / raw)
  To: jkosina, kishon; +Cc: linux-input, linux-next, liqin.linux, lennox.wu

When NO_IOMEM is enabled (e.g. score architecture), some drivers which
need HAS_IOMEM need notice about it, or it will report related warning:

  scripts/kconfig/conf --allmodconfig Kconfig
  kernel/time/Kconfig:162:warning: range is invalid
  warning: (PINCTRL_ROCKCHIP && PINCTRL_DOVE && POWER_RESET_KEYSTONE && S3C2410_WATCHDOG && VIDEO_S5P_FIMC && PHY_SAMSUNG_USB2) selects MFD_SYSCON which has unmet direct dependencies (HAS_IOMEM)
  warning: (GPIO_SCH && GPIO_ICH && GPIO_VX855 && GPIO_RDC321X && IE6XX_WDT && RADIO_WL1273 && HID_SENSOR_HUB && MFD_NVEC) selects MFD_CORE which has unmet direct dependencies (HAS_IOMEM)


Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
---
 drivers/hid/Kconfig | 2 +-
 drivers/phy/Kconfig | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/hid/Kconfig b/drivers/hid/Kconfig
index 800c8b6..5e79c6a 100644
--- a/drivers/hid/Kconfig
+++ b/drivers/hid/Kconfig
@@ -810,7 +810,7 @@ config HID_ZYDACRON
 
 config HID_SENSOR_HUB
 	tristate "HID Sensors framework support"
-	depends on HID
+	depends on HID && HAS_IOMEM
 	select MFD_CORE
 	default n
 	---help---
diff --git a/drivers/phy/Kconfig b/drivers/phy/Kconfig
index 16a2f06..fcdfe7c 100644
--- a/drivers/phy/Kconfig
+++ b/drivers/phy/Kconfig
@@ -122,6 +122,7 @@ config PHY_SUN4I_USB
 
 config PHY_SAMSUNG_USB2
 	tristate "Samsung USB 2.0 PHY driver"
+	depends on HAS_IOMEM
 	select GENERIC_PHY
 	select MFD_SYSCON
 	help
-- 
1.9.2.459.g68773ac

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

* Re: [PATCH] drivers: Kconfig: Add HAS_IOMEM dependency for allmodconfig under score architecture
  2014-06-10 12:04 [PATCH] drivers: Kconfig: Add HAS_IOMEM dependency for allmodconfig under score architecture Chen Gang
@ 2014-06-10 12:20 ` Chen Gang
  2014-06-11  8:53   ` Jiri Kosina
  0 siblings, 1 reply; 3+ messages in thread
From: Chen Gang @ 2014-06-10 12:20 UTC (permalink / raw)
  To: jkosina, kishon; +Cc: linux-input, linux-next, liqin.linux, lennox.wu



On 06/10/2014 08:04 PM, Chen Gang wrote:
> When NO_IOMEM is enabled (e.g. score architecture), some drivers which
> need HAS_IOMEM need notice about it, or it will report related warning:
> 
>   scripts/kconfig/conf --allmodconfig Kconfig
>   kernel/time/Kconfig:162:warning: range is invalid
    ^
Oh, sorry, this line above need be removed, it is not for this patch, if
still necessary to send patch v2 for it, please let me know, thanks.

>   warning: (PINCTRL_ROCKCHIP && PINCTRL_DOVE && POWER_RESET_KEYSTONE && S3C2410_WATCHDOG && VIDEO_S5P_FIMC && PHY_SAMSUNG_USB2) selects MFD_SYSCON which has unmet direct dependencies (HAS_IOMEM)
>   warning: (GPIO_SCH && GPIO_ICH && GPIO_VX855 && GPIO_RDC321X && IE6XX_WDT && RADIO_WL1273 && HID_SENSOR_HUB && MFD_NVEC) selects MFD_CORE which has unmet direct dependencies (HAS_IOMEM)
> 
> 
> Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
> ---
>  drivers/hid/Kconfig | 2 +-
>  drivers/phy/Kconfig | 1 +
>  2 files changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/hid/Kconfig b/drivers/hid/Kconfig
> index 800c8b6..5e79c6a 100644
> --- a/drivers/hid/Kconfig
> +++ b/drivers/hid/Kconfig
> @@ -810,7 +810,7 @@ config HID_ZYDACRON
>  
>  config HID_SENSOR_HUB
>  	tristate "HID Sensors framework support"
> -	depends on HID
> +	depends on HID && HAS_IOMEM
>  	select MFD_CORE
>  	default n
>  	---help---
> diff --git a/drivers/phy/Kconfig b/drivers/phy/Kconfig
> index 16a2f06..fcdfe7c 100644
> --- a/drivers/phy/Kconfig
> +++ b/drivers/phy/Kconfig
> @@ -122,6 +122,7 @@ config PHY_SUN4I_USB
>  
>  config PHY_SAMSUNG_USB2
>  	tristate "Samsung USB 2.0 PHY driver"
> +	depends on HAS_IOMEM
>  	select GENERIC_PHY
>  	select MFD_SYSCON
>  	help
> 

-- 
Chen Gang

Open, share, and attitude like air, water, and life which God blessed

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

* Re: [PATCH] drivers: Kconfig: Add HAS_IOMEM dependency for allmodconfig under score architecture
  2014-06-10 12:20 ` Chen Gang
@ 2014-06-11  8:53   ` Jiri Kosina
  0 siblings, 0 replies; 3+ messages in thread
From: Jiri Kosina @ 2014-06-11  8:53 UTC (permalink / raw)
  To: Chen Gang; +Cc: kishon, linux-input, linux-next, liqin.linux, lennox.wu

On Tue, 10 Jun 2014, Chen Gang wrote:

> > When NO_IOMEM is enabled (e.g. score architecture), some drivers which
> > need HAS_IOMEM need notice about it, or it will report related warning:
> > 
> >   scripts/kconfig/conf --allmodconfig Kconfig
> >   kernel/time/Kconfig:162:warning: range is invalid
>     ^
> Oh, sorry, this line above need be removed, it is not for this patch, if
> still necessary to send patch v2 for it, please let me know, thanks.

I have fixed it up (together with adding a proper subject) and applied.

-- 
Jiri Kosina
SUSE Labs

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

end of thread, other threads:[~2014-06-11  8:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-10 12:04 [PATCH] drivers: Kconfig: Add HAS_IOMEM dependency for allmodconfig under score architecture Chen Gang
2014-06-10 12:20 ` Chen Gang
2014-06-11  8:53   ` Jiri Kosina

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).