linux-rtc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] drivers: rtc: Make xilinx zynqmp driver depend on HAS_IOMEM
@ 2021-01-27  3:51 David Gow
  2021-02-02 23:56 ` Alexandre Belloni
  0 siblings, 1 reply; 2+ messages in thread
From: David Gow @ 2021-01-27  3:51 UTC (permalink / raw)
  To: Alessandro Zummo, Alexandre Belloni, YueHaibing
  Cc: David Gow, linux-rtc, linux-kernel

The Xilinx zynqmp RTC driver makes use of IOMEM functions like
devm_platform_ioremap_resource(), which are only available if
CONFIG_HAS_IOMEM is defined.

This causes the driver not to be enable under make ARCH=um allyesconfig,
even though it won't build.

By adding a dependency on HAS_IOMEM, the driver will not be enabled on
architectures which don't support it.

Fixes: 09ef18bcd5ac ("rtc: use devm_platform_ioremap_resource() to simplify code")
Signed-off-by: David Gow <davidgow@google.com>
---
 drivers/rtc/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/rtc/Kconfig b/drivers/rtc/Kconfig
index 6123f9f4fbc9..474d95184f20 100644
--- a/drivers/rtc/Kconfig
+++ b/drivers/rtc/Kconfig
@@ -1300,7 +1300,7 @@ config RTC_DRV_OPAL
 
 config RTC_DRV_ZYNQMP
 	tristate "Xilinx Zynq Ultrascale+ MPSoC RTC"
-	depends on OF
+	depends on OF && HAS_IOMEM
 	help
 	  If you say yes here you get support for the RTC controller found on
 	  Xilinx Zynq Ultrascale+ MPSoC.
-- 
2.30.0.280.ga3ce27912f-goog


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

* Re: [PATCH] drivers: rtc: Make xilinx zynqmp driver depend on HAS_IOMEM
  2021-01-27  3:51 [PATCH] drivers: rtc: Make xilinx zynqmp driver depend on HAS_IOMEM David Gow
@ 2021-02-02 23:56 ` Alexandre Belloni
  0 siblings, 0 replies; 2+ messages in thread
From: Alexandre Belloni @ 2021-02-02 23:56 UTC (permalink / raw)
  To: Alessandro Zummo, YueHaibing, David Gow
  Cc: Alexandre Belloni, linux-rtc, linux-kernel

On Tue, 26 Jan 2021 19:51:47 -0800, David Gow wrote:
> The Xilinx zynqmp RTC driver makes use of IOMEM functions like
> devm_platform_ioremap_resource(), which are only available if
> CONFIG_HAS_IOMEM is defined.
> 
> This causes the driver not to be enable under make ARCH=um allyesconfig,
> even though it won't build.
> 
> [...]

Applied, thanks!

[1/1] drivers: rtc: Make xilinx zynqmp driver depend on HAS_IOMEM
      commit: ddd0521549a975e6148732d6ca6b89ffa862c0e5

Best regards,
-- 
Alexandre Belloni <alexandre.belloni@bootlin.com>

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

end of thread, other threads:[~2021-02-02 23:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-27  3:51 [PATCH] drivers: rtc: Make xilinx zynqmp driver depend on HAS_IOMEM David Gow
2021-02-02 23:56 ` Alexandre Belloni

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