linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 0/8]  Rectify file references for dt-bindings in MAINTAINERS
@ 2021-07-26 14:29 Lukas Bulwahn
  2021-07-26 14:29 ` [PATCH v3 1/8] MAINTAINERS: rectify entry for ARM/TOSHIBA VISCONTI ARCHITECTURE Lukas Bulwahn
                   ` (7 more replies)
  0 siblings, 8 replies; 16+ messages in thread
From: Lukas Bulwahn @ 2021-07-26 14:29 UTC (permalink / raw)
  To: Rob Herring, devicetree
  Cc: Nobuhiro Iwamatsu, Yu Chen, Anitha Chrisanthus, Jonathan Cameron,
	Miquel Raynal, Naga Sureshkumar Relli, Hans Ulli Kroll,
	Deepak Saxena, Mirela Rabulea, Nishanth Menon, Tero Kristo,
	Santosh Shilimkar, Shubhrajyoti Datta, Wilken Gottwalt,
	Vignesh Raghavendra, Linus Walleij, Brendan Higgins,
	Joakim Zhang, Joe Perches, Ralf Ramsauer, kernel-janitors,
	linux-kernel, Lukas Bulwahn

Hi Rob,

here is a patch series that cleans up some file references for dt-bindings
in MAINTAINERS. It applies cleanly on next-202106723.

This is a v3 of the still relevant patches from the first submission
of the patch series (see Links) send out 2021-03-15 and resent on 2021-04-19.

It now further includes more clean-up, see patches 4 to 8.

Could you pick this series for your devicetree bindings tree?

No functional change, just cleaning up MAINTAINERS.

Lukas

Link: https://lore.kernel.org/lkml/20210315160451.7469-1-lukas.bulwahn@gmail.com/
Link: https://lore.kernel.org/lkml/20210419092609.3692-1-lukas.bulwahn@gmail.com/
Link: https://lore.kernel.org/lkml/20210614112349.26108-1-lukas.bulwahn@gmail.com/

Adjustment from original to resend version:
  - drop subsumed patches

Adjustment to resend version:
  - add Fixes-tags as requested by Nobuhiro Iwamatsu

Adjustment to v2:
  - add more clean-up for file references on dt-bindings

Lukas Bulwahn (8):
  MAINTAINERS: rectify entry for ARM/TOSHIBA VISCONTI ARCHITECTURE
  MAINTAINERS: rectify entry for HIKEY960 ONBOARD USB GPIO HUB DRIVER
  MAINTAINERS: rectify entry for INTEL KEEM BAY DRM DRIVER
  MAINTAINERS: rectify entries with documentation-file-ref check
  MAINTAINERS: rectify entry for ALLWINNER HARDWARE SPINLOCK SUPPORT
  MAINTAINERS: rectify entries to mtd-physmap.yaml
  MAINTAINERS: rectify entry for ARM/ASPEED I2C DRIVER
  MAINTAINERS: rectify entry for FREESCALE IMX / MXC FEC DRIVER

 MAINTAINERS | 31 +++++++++++++++----------------
 1 file changed, 15 insertions(+), 16 deletions(-)

-- 
2.17.1


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

* [PATCH v3 1/8] MAINTAINERS: rectify entry for ARM/TOSHIBA VISCONTI ARCHITECTURE
  2021-07-26 14:29 [PATCH v3 0/8] Rectify file references for dt-bindings in MAINTAINERS Lukas Bulwahn
@ 2021-07-26 14:29 ` Lukas Bulwahn
  2021-07-27  4:18   ` nobuhiro1.iwamatsu
  2021-07-26 14:29 ` [PATCH v3 2/8] MAINTAINERS: rectify entry for HIKEY960 ONBOARD USB GPIO HUB DRIVER Lukas Bulwahn
                   ` (6 subsequent siblings)
  7 siblings, 1 reply; 16+ messages in thread
From: Lukas Bulwahn @ 2021-07-26 14:29 UTC (permalink / raw)
  To: Rob Herring, devicetree
  Cc: Nobuhiro Iwamatsu, Yu Chen, Anitha Chrisanthus, Jonathan Cameron,
	Miquel Raynal, Naga Sureshkumar Relli, Hans Ulli Kroll,
	Deepak Saxena, Mirela Rabulea, Nishanth Menon, Tero Kristo,
	Santosh Shilimkar, Shubhrajyoti Datta, Wilken Gottwalt,
	Vignesh Raghavendra, Linus Walleij, Brendan Higgins,
	Joakim Zhang, Joe Perches, Ralf Ramsauer, kernel-janitors,
	linux-kernel, Lukas Bulwahn

Commit 836863a08c99 ("MAINTAINERS: Add information for Toshiba Visconti ARM
SoCs") refers to the non-existing file toshiba,tmpv7700-pinctrl.yaml in
./Documentation/devicetree/bindings/pinctrl/. Commit 1825c1fe0057
("pinctrl: Add DT bindings for Toshiba Visconti TMPV7700 SoC") originating
from the same patch series however adds the file
toshiba,visconti-pinctrl.yaml in that directory instead.

So, refer to toshiba,visconti-pinctrl.yaml in the ARM/TOSHIBA VISCONTI
ARCHITECTURE section instead.

Fixes: 836863a08c99 ("MAINTAINERS: Add information for Toshiba Visconti ARM SoCs")
Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
---
 MAINTAINERS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index d69b2d4646be..615c3e41cf92 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -2712,7 +2712,7 @@ T:	git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
 F:	Documentation/devicetree/bindings/arm/toshiba.yaml
 F:	Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
 F:	Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
-F:	Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
+F:	Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
 F:	Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
 F:	arch/arm64/boot/dts/toshiba/
 F:	drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
-- 
2.17.1


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

* [PATCH v3 2/8] MAINTAINERS: rectify entry for HIKEY960 ONBOARD USB GPIO HUB DRIVER
  2021-07-26 14:29 [PATCH v3 0/8] Rectify file references for dt-bindings in MAINTAINERS Lukas Bulwahn
  2021-07-26 14:29 ` [PATCH v3 1/8] MAINTAINERS: rectify entry for ARM/TOSHIBA VISCONTI ARCHITECTURE Lukas Bulwahn
@ 2021-07-26 14:29 ` Lukas Bulwahn
  2021-07-26 14:29 ` [PATCH v3 3/8] MAINTAINERS: rectify entry for INTEL KEEM BAY DRM DRIVER Lukas Bulwahn
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 16+ messages in thread
From: Lukas Bulwahn @ 2021-07-26 14:29 UTC (permalink / raw)
  To: Rob Herring, devicetree
  Cc: Nobuhiro Iwamatsu, Yu Chen, Anitha Chrisanthus, Jonathan Cameron,
	Miquel Raynal, Naga Sureshkumar Relli, Hans Ulli Kroll,
	Deepak Saxena, Mirela Rabulea, Nishanth Menon, Tero Kristo,
	Santosh Shilimkar, Shubhrajyoti Datta, Wilken Gottwalt,
	Vignesh Raghavendra, Linus Walleij, Brendan Higgins,
	Joakim Zhang, Joe Perches, Ralf Ramsauer, kernel-janitors,
	linux-kernel, Lukas Bulwahn

Commit 7a6ff4c4cbc3 ("misc: hisi_hikey_usb: Driver to support onboard USB
gpio hub on Hikey960") refers to the non-existing file
./Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml, but this
commit's patch series does not add any related devicetree binding in misc.

So, just drop this file reference in HIKEY960 ONBOARD USB GPIO HUB DRIVER.

Fixes: 7a6ff4c4cbc3 ("misc: hisi_hikey_usb: Driver to support onboard USB gpio hub on Hikey960")
Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
---
 MAINTAINERS | 1 -
 1 file changed, 1 deletion(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 615c3e41cf92..7a568d83096a 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -8381,7 +8381,6 @@ M:	John Stultz <john.stultz@linaro.org>
 L:	linux-kernel@vger.kernel.org
 S:	Maintained
 F:	drivers/misc/hisi_hikey_usb.c
-F:	Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
 
 HISILICON PMU DRIVER
 M:	Shaokun Zhang <zhangshaokun@hisilicon.com>
-- 
2.17.1


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

* [PATCH v3 3/8] MAINTAINERS: rectify entry for INTEL KEEM BAY DRM DRIVER
  2021-07-26 14:29 [PATCH v3 0/8] Rectify file references for dt-bindings in MAINTAINERS Lukas Bulwahn
  2021-07-26 14:29 ` [PATCH v3 1/8] MAINTAINERS: rectify entry for ARM/TOSHIBA VISCONTI ARCHITECTURE Lukas Bulwahn
  2021-07-26 14:29 ` [PATCH v3 2/8] MAINTAINERS: rectify entry for HIKEY960 ONBOARD USB GPIO HUB DRIVER Lukas Bulwahn
@ 2021-07-26 14:29 ` Lukas Bulwahn
  2021-07-26 14:29 ` [PATCH v3 4/8] MAINTAINERS: rectify entries with documentation-file-ref check Lukas Bulwahn
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 16+ messages in thread
From: Lukas Bulwahn @ 2021-07-26 14:29 UTC (permalink / raw)
  To: Rob Herring, devicetree
  Cc: Nobuhiro Iwamatsu, Yu Chen, Anitha Chrisanthus, Jonathan Cameron,
	Miquel Raynal, Naga Sureshkumar Relli, Hans Ulli Kroll,
	Deepak Saxena, Mirela Rabulea, Nishanth Menon, Tero Kristo,
	Santosh Shilimkar, Shubhrajyoti Datta, Wilken Gottwalt,
	Vignesh Raghavendra, Linus Walleij, Brendan Higgins,
	Joakim Zhang, Joe Perches, Ralf Ramsauer, kernel-janitors,
	linux-kernel, Lukas Bulwahn

Commit ed794057b052 ("drm/kmb: Build files for KeemBay Display driver")
refers to the non-existing file intel,kmb_display.yaml in
./Documentation/devicetree/bindings/display/.

Commit 5a76b1ed73b9 ("dt-bindings: display: Add support for Intel KeemBay
Display") originating from the same patch series however adds the file
intel,keembay-display.yaml in that directory instead.

So, refer to intel,keembay-display.yaml in the INTEL KEEM BAY DRM DRIVER
section instead.

Fixes: ed794057b052 ("drm/kmb: Build files for KeemBay Display driver")
Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
---
 MAINTAINERS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 7a568d83096a..bd943be7375c 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -9417,7 +9417,7 @@ INTEL KEEM BAY DRM DRIVER
 M:	Anitha Chrisanthus <anitha.chrisanthus@intel.com>
 M:	Edmund Dea <edmund.j.dea@intel.com>
 S:	Maintained
-F:	Documentation/devicetree/bindings/display/intel,kmb_display.yaml
+F:	Documentation/devicetree/bindings/display/intel,keembay-display.yaml
 F:	drivers/gpu/drm/kmb/
 
 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
-- 
2.17.1


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

* [PATCH v3 4/8] MAINTAINERS: rectify entries with documentation-file-ref check
  2021-07-26 14:29 [PATCH v3 0/8] Rectify file references for dt-bindings in MAINTAINERS Lukas Bulwahn
                   ` (2 preceding siblings ...)
  2021-07-26 14:29 ` [PATCH v3 3/8] MAINTAINERS: rectify entry for INTEL KEEM BAY DRM DRIVER Lukas Bulwahn
@ 2021-07-26 14:29 ` Lukas Bulwahn
  2021-08-03 10:38   ` [EXT] " Mirela Rabulea
  2021-08-04 19:21   ` Linus Walleij
  2021-07-26 14:29 ` [PATCH v3 5/8] MAINTAINERS: rectify entry for ALLWINNER HARDWARE SPINLOCK SUPPORT Lukas Bulwahn
                   ` (3 subsequent siblings)
  7 siblings, 2 replies; 16+ messages in thread
From: Lukas Bulwahn @ 2021-07-26 14:29 UTC (permalink / raw)
  To: Rob Herring, devicetree
  Cc: Nobuhiro Iwamatsu, Yu Chen, Anitha Chrisanthus, Jonathan Cameron,
	Miquel Raynal, Naga Sureshkumar Relli, Hans Ulli Kroll,
	Deepak Saxena, Mirela Rabulea, Nishanth Menon, Tero Kristo,
	Santosh Shilimkar, Shubhrajyoti Datta, Wilken Gottwalt,
	Vignesh Raghavendra, Linus Walleij, Brendan Higgins,
	Joakim Zhang, Joe Perches, Ralf Ramsauer, kernel-janitors,
	linux-kernel, Lukas Bulwahn

A number of file entries can be automatically repaired with
./scripts/documentation-file-ref-check --fix.

The changes from this script were manually cross-checked for sanity.

Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
---
 MAINTAINERS | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index bd943be7375c..c5a407015e2d 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1488,7 +1488,7 @@ M:	Miquel Raynal <miquel.raynal@bootlin.com@bootlin.com>
 M:	Naga Sureshkumar Relli <nagasure@xilinx.com>
 L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
 S:	Maintained
-F:	Documentation/devicetree/bindings/mtd/arm,pl353-smc.yaml
+F:	Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
 F:	drivers/memory/pl353-smc.c
 
 ARM PRIMECELL CLCD PL110 DRIVER
@@ -1525,7 +1525,7 @@ ARM PRIMECELL VIC PL190/PL192 DRIVER
 M:	Linus Walleij <linus.walleij@linaro.org>
 L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
 S:	Maintained
-F:	Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
+F:	Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
 F:	drivers/irqchip/irq-vic.c
 
 ARM SMC WATCHDOG DRIVER
@@ -1850,7 +1850,7 @@ T:	git git://github.com/ulli-kroll/linux.git
 F:	Documentation/devicetree/bindings/arm/gemini.txt
 F:	Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
 F:	Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
-F:	Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
+F:	Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
 F:	arch/arm/boot/dts/gemini*
 F:	arch/arm/mach-gemini/
 F:	drivers/crypto/gemini/
@@ -8633,7 +8633,7 @@ Q:	http://patchwork.ozlabs.org/project/linux-mtd/list/
 C:	irc://irc.oftc.net/mtd
 T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
 F:	Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
-F:	Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
+F:	Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
 F:	drivers/mtd/hyperbus/
 F:	include/linux/mtd/hyperbus.h
 
@@ -9410,7 +9410,7 @@ F:	include/linux/soc/ixp4xx/qmgr.h
 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
 M:	Deepak Saxena <dsaxena@plexity.net>
 S:	Maintained
-F:	Documentation/devicetree/bindings/display/intel,ixp46x-rng.yaml
+F:	Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
 F:	drivers/char/hw_random/ixp4xx-rng.c
 
 INTEL KEEM BAY DRM DRIVER
@@ -13428,7 +13428,7 @@ M:	Mirela Rabulea <mirela.rabulea@nxp.com>
 R:	NXP Linux Team <linux-imx@nxp.com>
 L:	linux-media@vger.kernel.org
 S:	Maintained
-F:	Documentation/devicetree/bindings/media/imx8-jpeg.yaml
+F:	Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
 F:	drivers/media/platform/imx-jpeg
 
 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
@@ -18354,7 +18354,7 @@ M:	Santosh Shilimkar <ssantosh@kernel.org>
 L:	linux-arm-kernel@lists.infradead.org
 S:	Maintained
 F:	Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
-F:	Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
+F:	Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
 F:	Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
 F:	Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
 F:	Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
@@ -20381,7 +20381,7 @@ R:	Srinivas Neeli <srinivas.neeli@xilinx.com>
 R:	Michal Simek <michal.simek@xilinx.com>
 S:	Maintained
 F:	Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
-F:	Documentation/devicetree/bindings/gpio/gpio-zynq.txt
+F:	Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
 F:	drivers/gpio/gpio-xilinx.c
 F:	drivers/gpio/gpio-zynq.c
 
-- 
2.17.1


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

* [PATCH v3 5/8] MAINTAINERS: rectify entry for ALLWINNER HARDWARE SPINLOCK SUPPORT
  2021-07-26 14:29 [PATCH v3 0/8] Rectify file references for dt-bindings in MAINTAINERS Lukas Bulwahn
                   ` (3 preceding siblings ...)
  2021-07-26 14:29 ` [PATCH v3 4/8] MAINTAINERS: rectify entries with documentation-file-ref check Lukas Bulwahn
@ 2021-07-26 14:29 ` Lukas Bulwahn
  2021-07-28  5:06   ` Wilken Gottwalt
  2021-07-26 14:29 ` [PATCH v3 6/8] MAINTAINERS: rectify entries to mtd-physmap.yaml Lukas Bulwahn
                   ` (2 subsequent siblings)
  7 siblings, 1 reply; 16+ messages in thread
From: Lukas Bulwahn @ 2021-07-26 14:29 UTC (permalink / raw)
  To: Rob Herring, devicetree
  Cc: Nobuhiro Iwamatsu, Yu Chen, Anitha Chrisanthus, Jonathan Cameron,
	Miquel Raynal, Naga Sureshkumar Relli, Hans Ulli Kroll,
	Deepak Saxena, Mirela Rabulea, Nishanth Menon, Tero Kristo,
	Santosh Shilimkar, Shubhrajyoti Datta, Wilken Gottwalt,
	Vignesh Raghavendra, Linus Walleij, Brendan Higgins,
	Joakim Zhang, Joe Perches, Ralf Ramsauer, kernel-janitors,
	linux-kernel, Lukas Bulwahn

Commit f9e784dcb63f ("dt-bindings: hwlock: add sun6i_hwspinlock") adds
Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml,
but the related commit 3c881e05c814 ("hwspinlock: add sun6i hardware
spinlock support") adds a file reference to allwinner,sun6i-hwspinlock.yaml
instead.

Hence, ./scripts/get_maintainer.pl --self-test=patterns complains:

  warning: no file matches  F:  Documentation/devicetree/bindings/hwlock/allwinner,sun6i-hwspinlock.yaml

Rectify this file reference in ALLWINNER HARDWARE SPINLOCK SUPPORT.

Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
---
 MAINTAINERS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index c5a407015e2d..8f36b6763073 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -755,7 +755,7 @@ F:	drivers/crypto/allwinner/
 ALLWINNER HARDWARE SPINLOCK SUPPORT
 M:	Wilken Gottwalt <wilken.gottwalt@posteo.net>
 S:	Maintained
-F:	Documentation/devicetree/bindings/hwlock/allwinner,sun6i-hwspinlock.yaml
+F:	Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml
 F:	drivers/hwspinlock/sun6i_hwspinlock.c
 
 ALLWINNER THERMAL DRIVER
-- 
2.17.1


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

* [PATCH v3 6/8] MAINTAINERS: rectify entries to mtd-physmap.yaml
  2021-07-26 14:29 [PATCH v3 0/8] Rectify file references for dt-bindings in MAINTAINERS Lukas Bulwahn
                   ` (4 preceding siblings ...)
  2021-07-26 14:29 ` [PATCH v3 5/8] MAINTAINERS: rectify entry for ALLWINNER HARDWARE SPINLOCK SUPPORT Lukas Bulwahn
@ 2021-07-26 14:29 ` Lukas Bulwahn
  2021-07-26 15:29   ` Miquel Raynal
  2021-08-11  8:40   ` Linus Walleij
  2021-07-26 14:29 ` [PATCH v3 7/8] MAINTAINERS: rectify entry for ARM/ASPEED I2C DRIVER Lukas Bulwahn
  2021-07-26 14:29 ` [PATCH v3 8/8] MAINTAINERS: rectify entry for FREESCALE IMX / MXC FEC DRIVER Lukas Bulwahn
  7 siblings, 2 replies; 16+ messages in thread
From: Lukas Bulwahn @ 2021-07-26 14:29 UTC (permalink / raw)
  To: Rob Herring, devicetree
  Cc: Nobuhiro Iwamatsu, Yu Chen, Anitha Chrisanthus, Jonathan Cameron,
	Miquel Raynal, Naga Sureshkumar Relli, Hans Ulli Kroll,
	Deepak Saxena, Mirela Rabulea, Nishanth Menon, Tero Kristo,
	Santosh Shilimkar, Shubhrajyoti Datta, Wilken Gottwalt,
	Vignesh Raghavendra, Linus Walleij, Brendan Higgins,
	Joakim Zhang, Joe Perches, Ralf Ramsauer, kernel-janitors,
	linux-kernel, Lukas Bulwahn

Commit 63f8e9e0ac65 ("dt-bindings: mtd: Convert mtd-physmap to DT schema")
aggregated, amongst others, arm-versatile.txt and cypress,hyperflash.txt,
into mtd-physmap.yaml in ./Documentation/devicetree/bindings/mtd/.

The two .txt files are however mentioned in MAINTAINERS; hence,
./scripts/get_maintainer.pl --self-test=patterns complains about broken
references.

Refer to mtd-physmap.yaml, so that the maintainers and reviewers of
ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT and HYPERBUS SUPPORT are
informed on any changes in the yaml file.

Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
---
 MAINTAINERS | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 8f36b6763073..07810c3211df 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1386,7 +1386,7 @@ F:	Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
 F:	Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
 F:	Documentation/devicetree/bindings/i2c/i2c-versatile.txt
 F:	Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
-F:	Documentation/devicetree/bindings/mtd/arm-versatile.txt
+F:	Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
 F:	arch/arm/boot/dts/arm-realview-*
 F:	arch/arm/boot/dts/integrator*
 F:	arch/arm/boot/dts/versatile*
@@ -8632,7 +8632,7 @@ S:	Supported
 Q:	http://patchwork.ozlabs.org/project/linux-mtd/list/
 C:	irc://irc.oftc.net/mtd
 T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
-F:	Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
+F:	Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
 F:	Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
 F:	drivers/mtd/hyperbus/
 F:	include/linux/mtd/hyperbus.h
-- 
2.17.1


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

* [PATCH v3 7/8] MAINTAINERS: rectify entry for ARM/ASPEED I2C DRIVER
  2021-07-26 14:29 [PATCH v3 0/8] Rectify file references for dt-bindings in MAINTAINERS Lukas Bulwahn
                   ` (5 preceding siblings ...)
  2021-07-26 14:29 ` [PATCH v3 6/8] MAINTAINERS: rectify entries to mtd-physmap.yaml Lukas Bulwahn
@ 2021-07-26 14:29 ` Lukas Bulwahn
  2021-07-26 14:29 ` [PATCH v3 8/8] MAINTAINERS: rectify entry for FREESCALE IMX / MXC FEC DRIVER Lukas Bulwahn
  7 siblings, 0 replies; 16+ messages in thread
From: Lukas Bulwahn @ 2021-07-26 14:29 UTC (permalink / raw)
  To: Rob Herring, devicetree
  Cc: Nobuhiro Iwamatsu, Yu Chen, Anitha Chrisanthus, Jonathan Cameron,
	Miquel Raynal, Naga Sureshkumar Relli, Hans Ulli Kroll,
	Deepak Saxena, Mirela Rabulea, Nishanth Menon, Tero Kristo,
	Santosh Shilimkar, Shubhrajyoti Datta, Wilken Gottwalt,
	Vignesh Raghavendra, Linus Walleij, Brendan Higgins,
	Joakim Zhang, Joe Perches, Ralf Ramsauer, kernel-janitors,
	linux-kernel, Lukas Bulwahn

Commit 810e4441946c ("dt-bindings: aspeed-i2c: Convert txt to yaml format")
converts i2c-aspeed.txt to aspeed,i2c.yaml, but missed to adjust its
reference in MAINTAINERS.

Hence, ./scripts/get_maintainer.pl --self-test=patterns complains about
a broken reference.

Rectify this file reference in ARM/ASPEED I2C DRIVER.

Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
---
 MAINTAINERS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 07810c3211df..0fe43695b58c 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1720,7 +1720,7 @@ R:	Joel Stanley <joel@jms.id.au>
 L:	linux-i2c@vger.kernel.org
 L:	openbmc@lists.ozlabs.org (moderated for non-subscribers)
 S:	Maintained
-F:	Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
+F:	Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
 F:	Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
 F:	drivers/i2c/busses/i2c-aspeed.c
 F:	drivers/irqchip/irq-aspeed-i2c-ic.c
-- 
2.17.1


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

* [PATCH v3 8/8] MAINTAINERS: rectify entry for FREESCALE IMX / MXC FEC DRIVER
  2021-07-26 14:29 [PATCH v3 0/8] Rectify file references for dt-bindings in MAINTAINERS Lukas Bulwahn
                   ` (6 preceding siblings ...)
  2021-07-26 14:29 ` [PATCH v3 7/8] MAINTAINERS: rectify entry for ARM/ASPEED I2C DRIVER Lukas Bulwahn
@ 2021-07-26 14:29 ` Lukas Bulwahn
  2021-07-27  1:26   ` Joakim Zhang
  7 siblings, 1 reply; 16+ messages in thread
From: Lukas Bulwahn @ 2021-07-26 14:29 UTC (permalink / raw)
  To: Rob Herring, devicetree
  Cc: Nobuhiro Iwamatsu, Yu Chen, Anitha Chrisanthus, Jonathan Cameron,
	Miquel Raynal, Naga Sureshkumar Relli, Hans Ulli Kroll,
	Deepak Saxena, Mirela Rabulea, Nishanth Menon, Tero Kristo,
	Santosh Shilimkar, Shubhrajyoti Datta, Wilken Gottwalt,
	Vignesh Raghavendra, Linus Walleij, Brendan Higgins,
	Joakim Zhang, Joe Perches, Ralf Ramsauer, kernel-janitors,
	linux-kernel, Lukas Bulwahn

Commit 96e4781b3d93 ("dt-bindings: net: fec: convert fsl,*fec bindings to
yaml") converts fsl-fec.txt to fsl,fec.yaml,  but missed to adjust its
reference in MAINTAINERS.

Hence, ./scripts/get_maintainer.pl --self-test=patterns complains about
a broken reference.

Repair this file reference in FREESCALE IMX / MXC FEC DRIVER.

Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
---
 MAINTAINERS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 0fe43695b58c..187c76bb42d4 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -7365,7 +7365,7 @@ FREESCALE IMX / MXC FEC DRIVER
 M:	Joakim Zhang <qiangqing.zhang@nxp.com>
 L:	netdev@vger.kernel.org
 S:	Maintained
-F:	Documentation/devicetree/bindings/net/fsl-fec.txt
+F:	Documentation/devicetree/bindings/net/fsl,fec.yaml
 F:	drivers/net/ethernet/freescale/fec.h
 F:	drivers/net/ethernet/freescale/fec_main.c
 F:	drivers/net/ethernet/freescale/fec_ptp.c
-- 
2.17.1


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

* Re: [PATCH v3 6/8] MAINTAINERS: rectify entries to mtd-physmap.yaml
  2021-07-26 14:29 ` [PATCH v3 6/8] MAINTAINERS: rectify entries to mtd-physmap.yaml Lukas Bulwahn
@ 2021-07-26 15:29   ` Miquel Raynal
  2021-08-11  8:40   ` Linus Walleij
  1 sibling, 0 replies; 16+ messages in thread
From: Miquel Raynal @ 2021-07-26 15:29 UTC (permalink / raw)
  To: Lukas Bulwahn
  Cc: Rob Herring, devicetree, Nobuhiro Iwamatsu, Yu Chen,
	Anitha Chrisanthus, Jonathan Cameron, Naga Sureshkumar Relli,
	Hans Ulli Kroll, Deepak Saxena, Mirela Rabulea, Nishanth Menon,
	Tero Kristo, Santosh Shilimkar, Shubhrajyoti Datta,
	Wilken Gottwalt, Vignesh Raghavendra, Linus Walleij,
	Brendan Higgins, Joakim Zhang, Joe Perches, Ralf Ramsauer,
	kernel-janitors, linux-kernel

Hi Lukas,

Lukas Bulwahn <lukas.bulwahn@gmail.com> wrote on Mon, 26 Jul 2021
16:29:41 +0200:

> Commit 63f8e9e0ac65 ("dt-bindings: mtd: Convert mtd-physmap to DT schema")
> aggregated, amongst others, arm-versatile.txt and cypress,hyperflash.txt,
> into mtd-physmap.yaml in ./Documentation/devicetree/bindings/mtd/.
> 
> The two .txt files are however mentioned in MAINTAINERS; hence,
> ./scripts/get_maintainer.pl --self-test=patterns complains about broken
> references.
> 
> Refer to mtd-physmap.yaml, so that the maintainers and reviewers of
> ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT and HYPERBUS SUPPORT are
> informed on any changes in the yaml file.
> 
> Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>

Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com>

Thanks,
Miquèl

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

* RE: [PATCH v3 8/8] MAINTAINERS: rectify entry for FREESCALE IMX / MXC FEC DRIVER
  2021-07-26 14:29 ` [PATCH v3 8/8] MAINTAINERS: rectify entry for FREESCALE IMX / MXC FEC DRIVER Lukas Bulwahn
@ 2021-07-27  1:26   ` Joakim Zhang
  0 siblings, 0 replies; 16+ messages in thread
From: Joakim Zhang @ 2021-07-27  1:26 UTC (permalink / raw)
  To: Lukas Bulwahn, Rob Herring, devicetree
  Cc: Nobuhiro Iwamatsu, Yu Chen, Anitha Chrisanthus, Jonathan Cameron,
	Miquel Raynal, Naga Sureshkumar Relli, Hans Ulli Kroll,
	Deepak Saxena, Mirela Rabulea, Nishanth Menon, Tero Kristo,
	Santosh Shilimkar, Shubhrajyoti Datta, Wilken Gottwalt,
	Vignesh Raghavendra, Linus Walleij, Brendan Higgins, Joe Perches,
	Ralf Ramsauer, kernel-janitors, linux-kernel


Hi Lukas,

> -----Original Message-----
> From: Lukas Bulwahn <lukas.bulwahn@gmail.com>
> Sent: 2021年7月26日 22:30
> To: Rob Herring <robh+dt@kernel.org>; devicetree@vger.kernel.org
> Cc: Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>; Yu Chen
> <chenyu56@huawei.com>; Anitha Chrisanthus
> <anitha.chrisanthus@intel.com>; Jonathan Cameron
> <Jonathan.Cameron@huawei.com>; Miquel Raynal
> <miquel.raynal@bootlin.com>; Naga Sureshkumar Relli
> <nagasure@xilinx.com>; Hans Ulli Kroll <ulli.kroll@googlemail.com>; Deepak
> Saxena <dsaxena@plexity.net>; Mirela Rabulea <mirela.rabulea@nxp.com>;
> Nishanth Menon <nm@ti.com>; Tero Kristo <kristo@kernel.org>; Santosh
> Shilimkar <ssantosh@kernel.org>; Shubhrajyoti Datta
> <shubhrajyoti.datta@xilinx.com>; Wilken Gottwalt
> <wilken.gottwalt@posteo.net>; Vignesh Raghavendra <vigneshr@ti.com>;
> Linus Walleij <linus.walleij@linaro.org>; Brendan Higgins
> <brendanhiggins@google.com>; Joakim Zhang <qiangqing.zhang@nxp.com>;
> Joe Perches <joe@perches.com>; Ralf Ramsauer
> <ralf.ramsauer@oth-regensburg.de>; kernel-janitors@vger.kernel.org;
> linux-kernel@vger.kernel.org; Lukas Bulwahn <lukas.bulwahn@gmail.com>
> Subject: [PATCH v3 8/8] MAINTAINERS: rectify entry for FREESCALE IMX / MXC
> FEC DRIVER
> 
> Commit 96e4781b3d93 ("dt-bindings: net: fec: convert fsl,*fec bindings to
> yaml") converts fsl-fec.txt to fsl,fec.yaml,  but missed to adjust its reference
> in MAINTAINERS.
> 
> Hence, ./scripts/get_maintainer.pl --self-test=patterns complains about a
> broken reference.
> 
> Repair this file reference in FREESCALE IMX / MXC FEC DRIVER.
> 
> Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>

Thanks.

Reviewed-by: Joakim Zhang <qiangqing.zhang@nxp.com>

Best Regards,
Joakim Zhang

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

* RE: [PATCH v3 1/8] MAINTAINERS: rectify entry for ARM/TOSHIBA VISCONTI ARCHITECTURE
  2021-07-26 14:29 ` [PATCH v3 1/8] MAINTAINERS: rectify entry for ARM/TOSHIBA VISCONTI ARCHITECTURE Lukas Bulwahn
@ 2021-07-27  4:18   ` nobuhiro1.iwamatsu
  0 siblings, 0 replies; 16+ messages in thread
From: nobuhiro1.iwamatsu @ 2021-07-27  4:18 UTC (permalink / raw)
  To: lukas.bulwahn, robh+dt, devicetree
  Cc: chenyu56, anitha.chrisanthus, Jonathan.Cameron, miquel.raynal,
	nagasure, ulli.kroll, dsaxena, mirela.rabulea, nm, kristo,
	ssantosh, shubhrajyoti.datta, wilken.gottwalt, vigneshr,
	linus.walleij, brendanhiggins, qiangqing.zhang, joe,
	ralf.ramsauer, kernel-janitors, linux-kernel

Hi,

> -----Original Message-----
> From: Lukas Bulwahn [mailto:lukas.bulwahn@gmail.com]
> Sent: Monday, July 26, 2021 11:30 PM
> To: Rob Herring <robh+dt@kernel.org>; devicetree@vger.kernel.org
> Cc: iwamatsu nobuhiro(岩松 信洋 □SWC◯ACT) <nobuhiro1.iwamatsu@toshiba.co.jp>; Yu Chen <chenyu56@huawei.com>;
> Anitha Chrisanthus <anitha.chrisanthus@intel.com>; Jonathan Cameron <Jonathan.Cameron@huawei.com>; Miquel Raynal
> <miquel.raynal@bootlin.com>; Naga Sureshkumar Relli <nagasure@xilinx.com>; Hans Ulli Kroll
> <ulli.kroll@googlemail.com>; Deepak Saxena <dsaxena@plexity.net>; Mirela Rabulea <mirela.rabulea@nxp.com>; Nishanth
> Menon <nm@ti.com>; Tero Kristo <kristo@kernel.org>; Santosh Shilimkar <ssantosh@kernel.org>; Shubhrajyoti Datta
> <shubhrajyoti.datta@xilinx.com>; Wilken Gottwalt <wilken.gottwalt@posteo.net>; Vignesh Raghavendra
> <vigneshr@ti.com>; Linus Walleij <linus.walleij@linaro.org>; Brendan Higgins <brendanhiggins@google.com>; Joakim
> Zhang <qiangqing.zhang@nxp.com>; Joe Perches <joe@perches.com>; Ralf Ramsauer <ralf.ramsauer@oth-regensburg.de>;
> kernel-janitors@vger.kernel.org; linux-kernel@vger.kernel.org; Lukas Bulwahn <lukas.bulwahn@gmail.com>
> Subject: [PATCH v3 1/8] MAINTAINERS: rectify entry for ARM/TOSHIBA VISCONTI ARCHITECTURE
> 
> Commit 836863a08c99 ("MAINTAINERS: Add information for Toshiba Visconti ARM
> SoCs") refers to the non-existing file toshiba,tmpv7700-pinctrl.yaml in
> ./Documentation/devicetree/bindings/pinctrl/. Commit 1825c1fe0057
> ("pinctrl: Add DT bindings for Toshiba Visconti TMPV7700 SoC") originating
> from the same patch series however adds the file
> toshiba,visconti-pinctrl.yaml in that directory instead.
> 
> So, refer to toshiba,visconti-pinctrl.yaml in the ARM/TOSHIBA VISCONTI
> ARCHITECTURE section instead.
> 
> Fixes: 836863a08c99 ("MAINTAINERS: Add information for Toshiba Visconti ARM SoCs")
> Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
> ---
>  MAINTAINERS | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>

Best regards,
  Nobuhiro


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

* Re: [PATCH v3 5/8] MAINTAINERS: rectify entry for ALLWINNER HARDWARE SPINLOCK SUPPORT
  2021-07-26 14:29 ` [PATCH v3 5/8] MAINTAINERS: rectify entry for ALLWINNER HARDWARE SPINLOCK SUPPORT Lukas Bulwahn
@ 2021-07-28  5:06   ` Wilken Gottwalt
  0 siblings, 0 replies; 16+ messages in thread
From: Wilken Gottwalt @ 2021-07-28  5:06 UTC (permalink / raw)
  To: Lukas Bulwahn
  Cc: Rob Herring, devicetree, Nobuhiro Iwamatsu, Yu Chen,
	Anitha Chrisanthus, Jonathan Cameron, Miquel Raynal,
	Naga Sureshkumar Relli, Hans Ulli Kroll, Deepak Saxena,
	Mirela Rabulea, Nishanth Menon, Tero Kristo, Santosh Shilimkar,
	Shubhrajyoti Datta, Vignesh Raghavendra, Linus Walleij,
	Brendan Higgins, Joakim Zhang, Joe Perches, Ralf Ramsauer,
	kernel-janitors, linux-kernel

On Mon, 26 Jul 2021 16:29:40 +0200
Lukas Bulwahn <lukas.bulwahn@gmail.com> wrote:

> Commit f9e784dcb63f ("dt-bindings: hwlock: add sun6i_hwspinlock") adds
> Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml,
> but the related commit 3c881e05c814 ("hwspinlock: add sun6i hardware
> spinlock support") adds a file reference to allwinner,sun6i-hwspinlock.yaml
> instead.
> 
> Hence, ./scripts/get_maintainer.pl --self-test=patterns complains:
> 
>   warning: no file matches  F:
> Documentation/devicetree/bindings/hwlock/allwinner,sun6i-hwspinlock.yaml
> 
> Rectify this file reference in ALLWINNER HARDWARE SPINLOCK SUPPORT.
> 
> Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
> ---
>  MAINTAINERS | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index c5a407015e2d..8f36b6763073 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -755,7 +755,7 @@ F:	drivers/crypto/allwinner/
>  ALLWINNER HARDWARE SPINLOCK SUPPORT
>  M:	Wilken Gottwalt <wilken.gottwalt@posteo.net>
>  S:	Maintained
> -F:	Documentation/devicetree/bindings/hwlock/allwinner,sun6i-hwspinlock.yaml
> +F:	Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml
>  F:	drivers/hwspinlock/sun6i_hwspinlock.c
>  
>  ALLWINNER THERMAL DRIVER

Uh, yeah, totally missed that. Thank you for fixing this.

Reviewed-by: Wilken Gottwalt <wilken.gottwalt@posteo.net>

greetings,
Will

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

* Re: [EXT] [PATCH v3 4/8] MAINTAINERS: rectify entries with documentation-file-ref check
  2021-07-26 14:29 ` [PATCH v3 4/8] MAINTAINERS: rectify entries with documentation-file-ref check Lukas Bulwahn
@ 2021-08-03 10:38   ` Mirela Rabulea
  2021-08-04 19:21   ` Linus Walleij
  1 sibling, 0 replies; 16+ messages in thread
From: Mirela Rabulea @ 2021-08-03 10:38 UTC (permalink / raw)
  To: mchehab, lukas.bulwahn, devicetree, robh+dt
  Cc: miquel.raynal, dsaxena, brendanhiggins, nm, nobuhiro1.iwamatsu,
	kristo, joe, kernel-janitors, Jonathan.Cameron, linux-kernel,
	nagasure, ulli.kroll, linus.walleij, anitha.chrisanthus,
	shubhrajyoti.datta, Joakim Zhang, ralf.ramsauer, wilken.gottwalt,
	chenyu56, ssantosh, vigneshr

Hi Lukas,

On Mon, 2021-07-26 at 16:29 +0200, Lukas Bulwahn wrote:
> 
> A number of file entries can be automatically repaired with
> ./scripts/documentation-file-ref-check --fix.
> 
> The changes from this script were manually cross-checked for sanity.
> 
> Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
> ---
>  MAINTAINERS | 16 ++++++++--------
>  1 file changed, 8 insertions(+), 8 deletions(-)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index bd943be7375c..c5a407015e2d 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -1488,7 +1488,7 @@ M:        Miquel Raynal <
> miquel.raynal@bootlin.com@bootlin.com>
>  M:     Naga Sureshkumar Relli <nagasure@xilinx.com>
>  L:     linux-arm-kernel@lists.infradead.org (moderated for non-
> subscribers)
>  S:     Maintained
> -F:     Documentation/devicetree/bindings/mtd/arm,pl353-smc.yaml
> +F:     Documentation/devicetree/bindings/memory-
> controllers/arm,pl353-smc.yaml
>  F:     drivers/memory/pl353-smc.c
> 
>  ARM PRIMECELL CLCD PL110 DRIVER
> @@ -1525,7 +1525,7 @@ ARM PRIMECELL VIC PL190/PL192 DRIVER
>  M:     Linus Walleij <linus.walleij@linaro.org>
>  L:     linux-arm-kernel@lists.infradead.org (moderated for non-
> subscribers)
>  S:     Maintained
> -F:     Documentation/devicetree/bindings/interrupt-
> controller/arm,vic.txt
> +F:     Documentation/devicetree/bindings/interrupt-
> controller/arm,vic.yaml
>  F:     drivers/irqchip/irq-vic.c
> 
>  ARM SMC WATCHDOG DRIVER
> @@ -1850,7 +1850,7 @@ T:        git git://github.com/ulli-
> kroll/linux.git
>  F:     Documentation/devicetree/bindings/arm/gemini.txt
>  F:     Documentation/devicetree/bindings/net/cortina,gemini-
> ethernet.txt
>  F:     Documentation/devicetree/bindings/pinctrl/cortina,gemini-
> pinctrl.txt
> -F:     Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
> +F:     Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
>  F:     arch/arm/boot/dts/gemini*
>  F:     arch/arm/mach-gemini/
>  F:     drivers/crypto/gemini/
> @@ -8633,7 +8633,7 @@ Q:        
> http://patchwork.ozlabs.org/project/linux-mtd/list/
>  C:     irc://irc.oftc.net/mtd
>  T:     git
> git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
>  F:     Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
> -F:     Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
> +F:     Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
>  F:     drivers/mtd/hyperbus/
>  F:     include/linux/mtd/hyperbus.h
> 
> @@ -9410,7 +9410,7 @@ F:        include/linux/soc/ixp4xx/qmgr.h
>  INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
>  M:     Deepak Saxena <dsaxena@plexity.net>
>  S:     Maintained
> -F:     Documentation/devicetree/bindings/display/intel,ixp46x-
> rng.yaml
> +F:     Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
>  F:     drivers/char/hw_random/ixp4xx-rng.c
> 
>  INTEL KEEM BAY DRM DRIVER
> @@ -13428,7 +13428,7 @@ M:      Mirela Rabulea <
> mirela.rabulea@nxp.com>
>  R:     NXP Linux Team <linux-imx@nxp.com>
>  L:     linux-media@vger.kernel.org
>  S:     Maintained
> -F:     Documentation/devicetree/bindings/media/imx8-jpeg.yaml
> +F:     Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml

Thanks a lot for fixing this, indeed, this file changed name during
review process, and I forgot to update the MAINTAINERS file.

Please note that there is another patch set that fixes only imx8-jpeg
reference in MAINTAINERS file from Mauro Carvalho Chehab. I added you
and Mauro to both email threads. Please stay in touch with Mauro, to
decide which patch to apply.
Appologies for my late reply, as I was on PTO.

For the line which rectifies nxp,imx8-jpeg.yaml:
Reviewed-by: Mirela Rabulea <mirela.rabulea@nxp.com>

Regards,
Mirela

>  F:     drivers/media/platform/imx-jpeg
> 
>  NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
> @@ -18354,7 +18354,7 @@ M:      Santosh Shilimkar <
> ssantosh@kernel.org>
>  L:     linux-arm-kernel@lists.infradead.org
>  S:     Maintained
>  F:     Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-
> common.yaml
> -F:     Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
> +F:     Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
>  F:     Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
>  F:     Documentation/devicetree/bindings/interrupt-
> controller/ti,sci-inta.yaml
>  F:     Documentation/devicetree/bindings/interrupt-
> controller/ti,sci-intr.yaml
> @@ -20381,7 +20381,7 @@ R:      Srinivas Neeli <
> srinivas.neeli@xilinx.com>
>  R:     Michal Simek <michal.simek@xilinx.com>
>  S:     Maintained
>  F:     Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
> -F:     Documentation/devicetree/bindings/gpio/gpio-zynq.txt
> +F:     Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
>  F:     drivers/gpio/gpio-xilinx.c
>  F:     drivers/gpio/gpio-zynq.c
> 
> --
> 2.17.1
> 

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

* Re: [PATCH v3 4/8] MAINTAINERS: rectify entries with documentation-file-ref check
  2021-07-26 14:29 ` [PATCH v3 4/8] MAINTAINERS: rectify entries with documentation-file-ref check Lukas Bulwahn
  2021-08-03 10:38   ` [EXT] " Mirela Rabulea
@ 2021-08-04 19:21   ` Linus Walleij
  1 sibling, 0 replies; 16+ messages in thread
From: Linus Walleij @ 2021-08-04 19:21 UTC (permalink / raw)
  To: Lukas Bulwahn
  Cc: Rob Herring,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Nobuhiro Iwamatsu, Yu Chen, Anitha Chrisanthus, Jonathan Cameron,
	Miquel Raynal, Naga Sureshkumar Relli, Hans Ulli Kroll,
	Deepak Saxena, Mirela Rabulea, Nishanth Menon, Tero Kristo,
	Santosh Shilimkar, Shubhrajyoti Datta, Wilken Gottwalt,
	Vignesh Raghavendra, Brendan Higgins, Joakim Zhang, Joe Perches,
	Ralf Ramsauer, kernel-janitors, linux-kernel

On Mon, Jul 26, 2021 at 4:30 PM Lukas Bulwahn <lukas.bulwahn@gmail.com> wrote:

> A number of file entries can be automatically repaired with
> ./scripts/documentation-file-ref-check --fix.
>
> The changes from this script were manually cross-checked for sanity.
>
> Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>

Thanks for fixing!
Acked-by: Linus Walleij <linus.walleij@linaro.org>

Yours,
Linus Walleij

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

* Re: [PATCH v3 6/8] MAINTAINERS: rectify entries to mtd-physmap.yaml
  2021-07-26 14:29 ` [PATCH v3 6/8] MAINTAINERS: rectify entries to mtd-physmap.yaml Lukas Bulwahn
  2021-07-26 15:29   ` Miquel Raynal
@ 2021-08-11  8:40   ` Linus Walleij
  1 sibling, 0 replies; 16+ messages in thread
From: Linus Walleij @ 2021-08-11  8:40 UTC (permalink / raw)
  To: Lukas Bulwahn
  Cc: Rob Herring,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Nobuhiro Iwamatsu, Yu Chen, Anitha Chrisanthus, Jonathan Cameron,
	Miquel Raynal, Naga Sureshkumar Relli, Hans Ulli Kroll,
	Deepak Saxena, Mirela Rabulea, Nishanth Menon, Tero Kristo,
	Santosh Shilimkar, Shubhrajyoti Datta, Wilken Gottwalt,
	Vignesh Raghavendra, Brendan Higgins, Joakim Zhang, Joe Perches,
	Ralf Ramsauer, kernel-janitors, linux-kernel

On Mon, Jul 26, 2021 at 4:30 PM Lukas Bulwahn <lukas.bulwahn@gmail.com> wrote:

> Commit 63f8e9e0ac65 ("dt-bindings: mtd: Convert mtd-physmap to DT schema")
> aggregated, amongst others, arm-versatile.txt and cypress,hyperflash.txt,
> into mtd-physmap.yaml in ./Documentation/devicetree/bindings/mtd/.
>
> The two .txt files are however mentioned in MAINTAINERS; hence,
> ./scripts/get_maintainer.pl --self-test=patterns complains about broken
> references.
>
> Refer to mtd-physmap.yaml, so that the maintainers and reviewers of
> ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT and HYPERBUS SUPPORT are
> informed on any changes in the yaml file.
>
> Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>

Reviewed-by: Linus Walleij <linus.walleij@linaro.org>

Yours,
Linus Walleij

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

end of thread, other threads:[~2021-08-11  8:40 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-26 14:29 [PATCH v3 0/8] Rectify file references for dt-bindings in MAINTAINERS Lukas Bulwahn
2021-07-26 14:29 ` [PATCH v3 1/8] MAINTAINERS: rectify entry for ARM/TOSHIBA VISCONTI ARCHITECTURE Lukas Bulwahn
2021-07-27  4:18   ` nobuhiro1.iwamatsu
2021-07-26 14:29 ` [PATCH v3 2/8] MAINTAINERS: rectify entry for HIKEY960 ONBOARD USB GPIO HUB DRIVER Lukas Bulwahn
2021-07-26 14:29 ` [PATCH v3 3/8] MAINTAINERS: rectify entry for INTEL KEEM BAY DRM DRIVER Lukas Bulwahn
2021-07-26 14:29 ` [PATCH v3 4/8] MAINTAINERS: rectify entries with documentation-file-ref check Lukas Bulwahn
2021-08-03 10:38   ` [EXT] " Mirela Rabulea
2021-08-04 19:21   ` Linus Walleij
2021-07-26 14:29 ` [PATCH v3 5/8] MAINTAINERS: rectify entry for ALLWINNER HARDWARE SPINLOCK SUPPORT Lukas Bulwahn
2021-07-28  5:06   ` Wilken Gottwalt
2021-07-26 14:29 ` [PATCH v3 6/8] MAINTAINERS: rectify entries to mtd-physmap.yaml Lukas Bulwahn
2021-07-26 15:29   ` Miquel Raynal
2021-08-11  8:40   ` Linus Walleij
2021-07-26 14:29 ` [PATCH v3 7/8] MAINTAINERS: rectify entry for ARM/ASPEED I2C DRIVER Lukas Bulwahn
2021-07-26 14:29 ` [PATCH v3 8/8] MAINTAINERS: rectify entry for FREESCALE IMX / MXC FEC DRIVER Lukas Bulwahn
2021-07-27  1:26   ` Joakim Zhang

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