linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] drivers: Let several drivers depends on HAS_IOMEM for 'devm_ioremap_resource'
@ 2014-07-13  3:07 Chen Gang
  2014-07-13  3:14 ` Chen Gang
       [not found] ` <53C1F7DE.3060102-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  0 siblings, 2 replies; 70+ messages in thread
From: Chen Gang @ 2014-07-13  3:07 UTC (permalink / raw)
  To: gregkh
  Cc: linux-iio, benh, teg, thierry.reding, Lennox Wu, marex,
	Liqin Chen, lars, richard, linux-input, linux-pwm, devel,
	linux-watchdog, msalter, dmitry.torokhov,
	linux-kernel@vger.kernel.org, knaack.h, schwidefsky,
	Mischa.Jonker, jic23

Several drivers need 'devm_ioremap_resource' which need HAS_IOMEM enabled.
So let them depend on HAS_IOMEM.

The related error (with allmodconfig under score):

    MODPOST 1365 modules
  ERROR: "devm_ioremap_resource" [drivers/watchdog/tegra_wdt.ko] undefined!
  ERROR: "devm_ioremap_resource" [drivers/watchdog/of_xilinx_wdt.ko] undefined!
  ERROR: "devm_ioremap_resource" [drivers/staging/iio/adc/mxs-lradc.ko] undefined!
  ERROR: "devm_ioremap_resource" [drivers/pwm/pwm-clps711x.ko] undefined!
  ERROR: "devm_ioremap_resource" [drivers/input/serio/olpc_apsp.ko] undefined!
  ERROR: "devm_ioremap_resource" [drivers/input/serio/arc_ps2.ko] undefined!


Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
---
 drivers/input/serio/Kconfig     | 3 ++-
 drivers/pwm/Kconfig             | 2 +-
 drivers/staging/iio/adc/Kconfig | 2 +-
 drivers/watchdog/Kconfig        | 3 ++-
 4 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/drivers/input/serio/Kconfig b/drivers/input/serio/Kconfig
index bc2d474..449d45f 100644
--- a/drivers/input/serio/Kconfig
+++ b/drivers/input/serio/Kconfig
@@ -244,6 +244,7 @@ config SERIO_PS2MULT
 
 config SERIO_ARC_PS2
 	tristate "ARC PS/2 support"
+	depends on HAS_IOMEM
 	help
 	  Say Y here if you have an ARC FPGA platform with a PS/2
 	  controller in it.
@@ -263,7 +264,7 @@ config SERIO_APBPS2
 
 config SERIO_OLPC_APSP
 	tristate "OLPC AP-SP input support"
-	depends on OLPC || COMPILE_TEST
+	depends on (OLPC || COMPILE_TEST) && HAS_IOMEM
 	help
 	  Say Y here if you want support for the keyboard and touchpad included
 	  in the OLPC XO-1.75 and XO-4 laptops.
diff --git a/drivers/pwm/Kconfig b/drivers/pwm/Kconfig
index 4ad7b89..2faf5ce 100644
--- a/drivers/pwm/Kconfig
+++ b/drivers/pwm/Kconfig
@@ -82,7 +82,7 @@ config PWM_BFIN
 
 config PWM_CLPS711X
 	tristate "CLPS711X PWM support"
-	depends on ARCH_CLPS711X || COMPILE_TEST
+	depends on (ARCH_CLPS711X || COMPILE_TEST) && HAS_IOMEM
 	help
 	  Generic PWM framework driver for Cirrus Logic CLPS711X.
 
diff --git a/drivers/staging/iio/adc/Kconfig b/drivers/staging/iio/adc/Kconfig
index b87e382..4e927d2 100644
--- a/drivers/staging/iio/adc/Kconfig
+++ b/drivers/staging/iio/adc/Kconfig
@@ -94,7 +94,7 @@ config LPC32XX_ADC
 
 config MXS_LRADC
 	tristate "Freescale i.MX23/i.MX28 LRADC"
-	depends on ARCH_MXS || COMPILE_TEST
+	depends on (ARCH_MXS || COMPILE_TEST) && HAS_IOMEM
 	depends on INPUT
 	select STMP_DEVICE
 	select IIO_BUFFER
diff --git a/drivers/watchdog/Kconfig b/drivers/watchdog/Kconfig
index 76dd541..0e4abb2 100644
--- a/drivers/watchdog/Kconfig
+++ b/drivers/watchdog/Kconfig
@@ -113,6 +113,7 @@ config WM8350_WATCHDOG
 
 config XILINX_WATCHDOG
 	tristate "Xilinx Watchdog timer"
+	depends on HAS_IOMEM
 	select WATCHDOG_CORE
 	help
 	  Watchdog driver for the xps_timebase_wdt ip core.
@@ -434,7 +435,7 @@ config SIRFSOC_WATCHDOG
 
 config TEGRA_WATCHDOG
 	tristate "Tegra watchdog"
-	depends on ARCH_TEGRA || COMPILE_TEST
+	depends on (ARCH_TEGRA || COMPILE_TEST) && HAS_IOMEM
 	select WATCHDOG_CORE
 	help
 	  Say Y here to include support for the watchdog timer
-- 
1.7.11.7

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

end of thread, other threads:[~2014-07-31 20:09 UTC | newest]

Thread overview: 70+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-13  3:07 [PATCH] drivers: Let several drivers depends on HAS_IOMEM for 'devm_ioremap_resource' Chen Gang
2014-07-13  3:14 ` Chen Gang
2014-07-13 14:28   ` Chen Gang
     [not found] ` <53C1F7DE.3060102-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2014-07-13  3:45   ` Marek Vasut
2014-07-13  9:27     ` Lennox Wu
2014-07-13  9:45       ` Richard Weinberger
2014-07-13 10:06         ` Chen Gang
2014-07-13 13:26         ` Lars-Peter Clausen
     [not found]           ` <53C288F0.3070001-Qo5EllUWu/uELgA04lAiVw@public.gmane.org>
2014-07-13 13:40             ` Richard Weinberger
2014-07-13 13:56               ` Lars-Peter Clausen
2014-07-13 14:03                 ` Richard Weinberger
2014-07-13 14:25                   ` Lars-Peter Clausen
2014-07-13 15:02                     ` Chen Gang
2014-07-13 19:22                     ` Greg Kroah-Hartman
2014-07-13 19:33                       ` Richard Weinberger
2014-07-13 20:17                         ` Greg Kroah-Hartman
     [not found]                           ` <20140713201753.GA29955-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org>
2014-07-14  8:31                             ` Richard Weinberger
2014-07-14  8:48                               ` Lars-Peter Clausen
2014-07-14  8:57                                 ` Richard Weinberger
     [not found]                                   ` <53C39B66.4060500-/L3Ra7n9ekc@public.gmane.org>
2014-07-14  9:22                                     ` Chen Gang
     [not found]                                       ` <5A40E1FC-CA61-4AFF-B205-4BAC175AA7AC-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2014-07-15  0:34                                         ` Chen Gang
2014-07-15  0:53                                           ` Guenter Roeck
2014-07-15  1:11                                             ` Chen Gang
2014-07-15 14:38                                               ` Chen Gang
     [not found]                                                 ` <53C53CE1.4090803-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2014-07-17  1:27                                                   ` Chen Gang
2014-07-17  1:58                                                     ` Guenter Roeck
2014-07-17  8:37                                                     ` Thierry Reding
2014-07-17  8:59                                                       ` Chen Gang
2014-07-17  9:16                                                         ` Dan Carpenter
2014-07-17  9:19                                                           ` Chen Gang
2014-07-23 11:09                                                             ` Chen Gang
2014-07-23 11:30                                                               ` Dan Carpenter
2014-07-23 11:37                                                                 ` Chen Gang
2014-07-17  9:20                                                     ` Arnd Bergmann
2014-07-17  9:26                                                       ` Richard Weinberger
2014-07-17 10:28                                                         ` Arnd Bergmann
2014-07-17 10:58                                                           ` Richard Weinberger
2014-07-17 11:24                                                             ` Arnd Bergmann
2014-07-17 11:32                                                             ` Chen Gang
2014-07-17  9:29                                                       ` Chen Gang
2014-07-17  9:51                                                         ` Thierry Reding
2014-07-17 10:38                                                         ` Arnd Bergmann
2014-07-17 11:46                                                           ` Chen Gang
2014-07-17  9:56                                                       ` Thierry Reding
2014-07-17 10:33                                                         ` Arnd Bergmann
2014-07-17 10:55                                                           ` Thierry Reding
2014-07-17 11:20                                                             ` Chen Gang
2014-07-17 10:40                                                       ` Lars-Peter Clausen
2014-07-17 10:48                                                         ` Arnd Bergmann
2014-07-17 11:28                                                           ` Chen Gang
2014-07-17 20:41                                                             ` Chris Metcalf
2014-07-17 21:05                                                               ` Arnd Bergmann
2014-07-18  0:26                                                                 ` Chen Gang
2014-07-31 20:09                                                                 ` Chris Metcalf
2014-07-17 18:09                                                           ` Richard Weinberger
2014-07-18  0:36                                                             ` Chen Gang
2014-07-18  7:35                                                               ` Richard Weinberger
2014-07-18 10:44                                                                 ` Chen Gang
2014-07-18 10:51                                                                   ` Richard Weinberger
2014-07-18 15:37                                                                     ` Lennox Wu
2014-07-18 18:02                                                                       ` Chen Gang
2014-07-20  8:38                                                                         ` Chen Gang
2014-07-20  9:45                                                                           ` Richard Weinberger
     [not found]                                                                             ` <53CB8FBF.2070206-/L3Ra7n9ekc@public.gmane.org>
2014-07-20  9:51                                                                               ` Chen Gang
2014-07-20  9:56                                                                                 ` Chen Gang
2014-07-20  9:45                                                                           ` Chen Gang
2014-07-22 10:32                                                                             ` Arnd Bergmann
2014-07-22 11:29                                                                               ` Chen Gang
2014-07-15  0:35                                         ` Chen Gang
2014-07-14  8:18                       ` Thierry Reding

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).