linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] MAINTAINERS: add driver/soc/amlogic/ to amlogic list
@ 2018-12-10 19:45 Corentin Labbe
  2018-12-10 19:45 ` [PATCH 2/2] soc: amlogic: meson-clk-measure: Add missing REGMAP_MMIO dependency Corentin Labbe
  2018-12-10 21:17 ` [PATCH 1/2] MAINTAINERS: add driver/soc/amlogic/ to amlogic list Kevin Hilman
  0 siblings, 2 replies; 4+ messages in thread
From: Corentin Labbe @ 2018-12-10 19:45 UTC (permalink / raw)
  To: khilman; +Cc: linux-amlogic, linux-arm-kernel, linux-kernel, Corentin Labbe

While sending a patch for drivers/soc/amlogic/Kconfig, I saw that getmaintainer.pl give nobody for it.
This patchs adds drivers/soc/amlogic/ to amlogic maintainers.

Signed-off-by: Corentin Labbe <clabbe@baylibre.com>
---
 MAINTAINERS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 7f5c634..f2a5397 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1314,6 +1314,7 @@ F:	arch/arm/boot/dts/meson*
 F:	arch/arm64/boot/dts/amlogic/
 F:	drivers/pinctrl/meson/
 F:	drivers/mmc/host/meson*
+F:	drivers/soc/amlogic/
 N:	meson
 
 ARM/Annapurna Labs ALPINE ARCHITECTURE
-- 
2.7.4


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

* [PATCH 2/2] soc: amlogic: meson-clk-measure: Add missing REGMAP_MMIO dependency
  2018-12-10 19:45 [PATCH 1/2] MAINTAINERS: add driver/soc/amlogic/ to amlogic list Corentin Labbe
@ 2018-12-10 19:45 ` Corentin Labbe
  2018-12-10 21:17   ` Kevin Hilman
  2018-12-10 21:17 ` [PATCH 1/2] MAINTAINERS: add driver/soc/amlogic/ to amlogic list Kevin Hilman
  1 sibling, 1 reply; 4+ messages in thread
From: Corentin Labbe @ 2018-12-10 19:45 UTC (permalink / raw)
  To: khilman; +Cc: linux-amlogic, linux-arm-kernel, linux-kernel, Corentin Labbe

This patchs adds a missing dependency on REGMAP_MMIO.
This cause the following build failure on SPARC:
drivers/soc/amlogic/meson-clk-measure.o: In function `meson_msr_probe':
meson-clk-measure.c:(.text+0xc4): undefined reference to `__devm_regmap_init_mmio_clk'

Signed-off-by: Corentin Labbe <clabbe@baylibre.com>
---
 drivers/soc/amlogic/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/soc/amlogic/Kconfig b/drivers/soc/amlogic/Kconfig
index 36633bb..5501ad5 100644
--- a/drivers/soc/amlogic/Kconfig
+++ b/drivers/soc/amlogic/Kconfig
@@ -11,6 +11,7 @@ config MESON_CLK_MEASURE
 	bool "Amlogic Meson SoC Clock Measure driver"
 	depends on ARCH_MESON || COMPILE_TEST
 	default ARCH_MESON
+	select REGMAP_MMIO
 	help
 	  Say yes to support of Measuring a set of internal SoC clocks
 	  from the debugfs interface.
-- 
2.7.4


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

* Re: [PATCH 1/2] MAINTAINERS: add driver/soc/amlogic/ to amlogic list
  2018-12-10 19:45 [PATCH 1/2] MAINTAINERS: add driver/soc/amlogic/ to amlogic list Corentin Labbe
  2018-12-10 19:45 ` [PATCH 2/2] soc: amlogic: meson-clk-measure: Add missing REGMAP_MMIO dependency Corentin Labbe
@ 2018-12-10 21:17 ` Kevin Hilman
  1 sibling, 0 replies; 4+ messages in thread
From: Kevin Hilman @ 2018-12-10 21:17 UTC (permalink / raw)
  To: Corentin Labbe
  Cc: linux-amlogic, linux-arm-kernel, linux-kernel, Corentin Labbe

Corentin Labbe <clabbe@baylibre.com> writes:

> While sending a patch for drivers/soc/amlogic/Kconfig, I saw that getmaintainer.pl give nobody for it.
> This patchs adds drivers/soc/amlogic/ to amlogic maintainers.
>
> Signed-off-by: Corentin Labbe <clabbe@baylibre.com>

nit: in Subject, I did a s/driver/drivers/

now queued for v4.21 (branch soc)

Kevin

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

* Re: [PATCH 2/2] soc: amlogic: meson-clk-measure: Add missing REGMAP_MMIO dependency
  2018-12-10 19:45 ` [PATCH 2/2] soc: amlogic: meson-clk-measure: Add missing REGMAP_MMIO dependency Corentin Labbe
@ 2018-12-10 21:17   ` Kevin Hilman
  0 siblings, 0 replies; 4+ messages in thread
From: Kevin Hilman @ 2018-12-10 21:17 UTC (permalink / raw)
  To: Corentin Labbe
  Cc: linux-amlogic, linux-arm-kernel, linux-kernel, Corentin Labbe

Corentin Labbe <clabbe@baylibre.com> writes:

> This patchs adds a missing dependency on REGMAP_MMIO.
> This cause the following build failure on SPARC:
> drivers/soc/amlogic/meson-clk-measure.o: In function `meson_msr_probe':
> meson-clk-measure.c:(.text+0xc4): undefined reference to `__devm_regmap_init_mmio_clk'
>
> Signed-off-by: Corentin Labbe <clabbe@baylibre.com>

now queued for v4.21 (branch drivers)

Kevin

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

end of thread, other threads:[~2018-12-10 21:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-10 19:45 [PATCH 1/2] MAINTAINERS: add driver/soc/amlogic/ to amlogic list Corentin Labbe
2018-12-10 19:45 ` [PATCH 2/2] soc: amlogic: meson-clk-measure: Add missing REGMAP_MMIO dependency Corentin Labbe
2018-12-10 21:17   ` Kevin Hilman
2018-12-10 21:17 ` [PATCH 1/2] MAINTAINERS: add driver/soc/amlogic/ to amlogic list Kevin Hilman

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