public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] MAINTAINERS: adjust file patterns in TQ SYSTEMS BOARD & DRIVER SUPPORT
@ 2023-08-25  5:58 Lukas Bulwahn
  2023-08-25  6:19 ` Alexander Stein
  0 siblings, 1 reply; 6+ messages in thread
From: Lukas Bulwahn @ 2023-08-25  5:58 UTC (permalink / raw)
  To: Matthias Schiffer, Markus Niebel, Alexander Stein, Lee Jones
  Cc: kernel-janitors, linux-kernel, Lukas Bulwahn

Commit 77da3f22b3d5 ("MAINTAINERS: Add entry for TQ-Systems device trees
and drivers") adds some file patterns for files in arch/arm/boot/dts/, but
those patterns do not match any files in the repository. Hence,
./scripts/get_maintainer.pl --self-test=patterns complains about broken
references. The files of interest are actually in the directory
arch/arm/boot/dts/nxp/imx/.

Adjust the file patterns to match the intended files.

Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
---
Lee, please pick this minor clean-up patch.

 MAINTAINERS | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 52277ee9c1b8..f5d4058b7ff4 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -21817,9 +21817,9 @@ TQ SYSTEMS BOARD & DRIVER SUPPORT
 L:	linux@ew.tq-group.com
 S:	Supported
 W:	https://www.tq-group.com/en/products/tq-embedded/
-F:	arch/arm/boot/dts/imx*mba*.dts*
-F:	arch/arm/boot/dts/imx*tqma*.dts*
-F:	arch/arm/boot/dts/mba*.dtsi
+F:	arch/arm/boot/dts/nxp/imx/imx*mba*.dts*
+F:	arch/arm/boot/dts/nxp/imx/imx*tqma*.dts*
+F:	arch/arm/boot/dts/nxp/imx/mba*.dtsi
 F:	arch/arm64/boot/dts/freescale/imx*mba*.dts*
 F:	arch/arm64/boot/dts/freescale/imx*tqma*.dts*
 F:	arch/arm64/boot/dts/freescale/mba*.dtsi
-- 
2.17.1


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

* Re: [PATCH] MAINTAINERS: adjust file patterns in TQ SYSTEMS BOARD & DRIVER SUPPORT
  2023-08-25  5:58 Lukas Bulwahn
@ 2023-08-25  6:19 ` Alexander Stein
  2023-11-03  8:15   ` Alexander Stein
  0 siblings, 1 reply; 6+ messages in thread
From: Alexander Stein @ 2023-08-25  6:19 UTC (permalink / raw)
  To: Matthias Schiffer, Markus Niebel, Lee Jones, Lukas Bulwahn
  Cc: kernel-janitors, linux-kernel, Lukas Bulwahn

Hi Lukas,

Am Freitag, 25. August 2023, 07:58:21 CEST schrieb Lukas Bulwahn:
> Commit 77da3f22b3d5 ("MAINTAINERS: Add entry for TQ-Systems device trees
> and drivers") adds some file patterns for files in arch/arm/boot/dts/, but
> those patterns do not match any files in the repository. Hence,
> ./scripts/get_maintainer.pl --self-test=patterns complains about broken
> references. The files of interest are actually in the directory
> arch/arm/boot/dts/nxp/imx/.

Nice, I didn't know about --self-test=patterns. But you are right, the 
patterns do not match anymore since arch/arm dts restructuring.
I also suggest to add the Fixes tag:

Fixes: 77da3f22b3d54 ("MAINTAINERS: Add entry for TQ-Systems device trees and 
drivers")
Reviewed-by: Alexander Stein <alexander.stein@ew.tq-group.com>

> Adjust the file patterns to match the intended files.
> 
> Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
> ---
> Lee, please pick this minor clean-up patch.
> 
>  MAINTAINERS | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 52277ee9c1b8..f5d4058b7ff4 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -21817,9 +21817,9 @@ TQ SYSTEMS BOARD & DRIVER SUPPORT
>  L:	linux@ew.tq-group.com
>  S:	Supported
>  W:	https://www.tq-group.com/en/products/tq-embedded/
> -F:	arch/arm/boot/dts/imx*mba*.dts*
> -F:	arch/arm/boot/dts/imx*tqma*.dts*
> -F:	arch/arm/boot/dts/mba*.dtsi
> +F:	arch/arm/boot/dts/nxp/imx/imx*mba*.dts*
> +F:	arch/arm/boot/dts/nxp/imx/imx*tqma*.dts*
> +F:	arch/arm/boot/dts/nxp/imx/mba*.dtsi
>  F:	arch/arm64/boot/dts/freescale/imx*mba*.dts*
>  F:	arch/arm64/boot/dts/freescale/imx*tqma*.dts*
>  F:	arch/arm64/boot/dts/freescale/mba*.dtsi


-- 
TQ-Systems GmbH | Mühlstraße 2, Gut Delling | 82229 Seefeld, Germany
Amtsgericht München, HRB 105018
Geschäftsführer: Detlef Schneider, Rüdiger Stahl, Stefan Schneider
http://www.tq-group.com/



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

* Re: [PATCH] MAINTAINERS: adjust file patterns in TQ SYSTEMS BOARD & DRIVER SUPPORT
  2023-08-25  6:19 ` Alexander Stein
@ 2023-11-03  8:15   ` Alexander Stein
  0 siblings, 0 replies; 6+ messages in thread
From: Alexander Stein @ 2023-11-03  8:15 UTC (permalink / raw)
  To: Lee Jones, Lukas Bulwahn
  Cc: Matthias Schiffer, Markus Niebel, kernel-janitors, linux-kernel,
	Lukas Bulwahn

Hi,

Am Freitag, 25. August 2023, 08:19:32 CET schrieb Alexander Stein:
> Hi Lukas,
> 
> Am Freitag, 25. August 2023, 07:58:21 CEST schrieb Lukas Bulwahn:
> > Commit 77da3f22b3d5 ("MAINTAINERS: Add entry for TQ-Systems device trees
> > and drivers") adds some file patterns for files in arch/arm/boot/dts/, but
> > those patterns do not match any files in the repository. Hence,
> > ./scripts/get_maintainer.pl --self-test=patterns complains about broken
> > references. The files of interest are actually in the directory
> > arch/arm/boot/dts/nxp/imx/.
> 
> Nice, I didn't know about --self-test=patterns. But you are right, the
> patterns do not match anymore since arch/arm dts restructuring.
> I also suggest to add the Fixes tag:
> 
> Fixes: 77da3f22b3d54 ("MAINTAINERS: Add entry for TQ-Systems device trees
> and drivers")
> Reviewed-by: Alexander Stein <alexander.stein@ew.tq-group.com>

Any progress on this?
Thanks

Alexander

> > Adjust the file patterns to match the intended files.
> > 
> > Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
> > ---
> > Lee, please pick this minor clean-up patch.
> > 
> >  MAINTAINERS | 6 +++---
> >  1 file changed, 3 insertions(+), 3 deletions(-)
> > 
> > diff --git a/MAINTAINERS b/MAINTAINERS
> > index 52277ee9c1b8..f5d4058b7ff4 100644
> > --- a/MAINTAINERS
> > +++ b/MAINTAINERS
> > @@ -21817,9 +21817,9 @@ TQ SYSTEMS BOARD & DRIVER SUPPORT
> > 
> >  L:	linux@ew.tq-group.com
> >  S:	Supported
> >  W:	https://www.tq-group.com/en/products/tq-embedded/
> > 
> > -F:	arch/arm/boot/dts/imx*mba*.dts*
> > -F:	arch/arm/boot/dts/imx*tqma*.dts*
> > -F:	arch/arm/boot/dts/mba*.dtsi
> > +F:	arch/arm/boot/dts/nxp/imx/imx*mba*.dts*
> > +F:	arch/arm/boot/dts/nxp/imx/imx*tqma*.dts*
> > +F:	arch/arm/boot/dts/nxp/imx/mba*.dtsi
> > 
> >  F:	arch/arm64/boot/dts/freescale/imx*mba*.dts*
> >  F:	arch/arm64/boot/dts/freescale/imx*tqma*.dts*
> >  F:	arch/arm64/boot/dts/freescale/mba*.dtsi


-- 
TQ-Systems GmbH | Mühlstraße 2, Gut Delling | 82229 Seefeld, Germany
Amtsgericht München, HRB 105018
Geschäftsführer: Detlef Schneider, Rüdiger Stahl, Stefan Schneider
http://www.tq-group.com/



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

* [PATCH] MAINTAINERS: adjust file patterns in TQ SYSTEMS BOARD & DRIVER SUPPORT
@ 2023-11-23 11:32 Lukas Bulwahn
  2024-02-29 14:50 ` Alexander Stein
  0 siblings, 1 reply; 6+ messages in thread
From: Lukas Bulwahn @ 2023-11-23 11:32 UTC (permalink / raw)
  To: Matthias Schiffer, Markus Niebel, Alexander Stein, Lee Jones
  Cc: kernel-janitors, linux-kernel, Lukas Bulwahn

Commit 77da3f22b3d5 ("MAINTAINERS: Add entry for TQ-Systems device trees
and drivers") adds some file patterns for files in arch/arm/boot/dts/, but
those patterns do not match any files in the repository. Hence,
./scripts/get_maintainer.pl --self-test=patterns complains about broken
references. The files of interest are actually in the directory
arch/arm/boot/dts/nxp/imx/.

Adjust the file patterns to match the intended files.

Fixes: 77da3f22b3d5 ("MAINTAINERS: Add entry for TQ-Systems device trees and drivers")
Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
Reviewed-by: Alexander Stein <alexander.stein@ew.tq-group.com>
---
 MAINTAINERS | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index df7a57ac864e..1e439b08d5d4 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -22084,9 +22084,9 @@ TQ SYSTEMS BOARD & DRIVER SUPPORT
 L:	linux@ew.tq-group.com
 S:	Supported
 W:	https://www.tq-group.com/en/products/tq-embedded/
-F:	arch/arm/boot/dts/imx*mba*.dts*
-F:	arch/arm/boot/dts/imx*tqma*.dts*
-F:	arch/arm/boot/dts/mba*.dtsi
+F:	arch/arm/boot/dts/nxp/imx/imx*mba*.dts*
+F:	arch/arm/boot/dts/nxp/imx/imx*tqma*.dts*
+F:	arch/arm/boot/dts/nxp/imx/mba*.dtsi
 F:	arch/arm64/boot/dts/freescale/fsl-*tqml*.dts*
 F:	arch/arm64/boot/dts/freescale/imx*mba*.dts*
 F:	arch/arm64/boot/dts/freescale/imx*tqma*.dts*
-- 
2.17.1


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

* Re: [PATCH] MAINTAINERS: adjust file patterns in TQ SYSTEMS BOARD & DRIVER SUPPORT
  2023-11-23 11:32 [PATCH] MAINTAINERS: adjust file patterns in TQ SYSTEMS BOARD & DRIVER SUPPORT Lukas Bulwahn
@ 2024-02-29 14:50 ` Alexander Stein
  2024-05-22 11:00   ` Alexander Stein
  0 siblings, 1 reply; 6+ messages in thread
From: Alexander Stein @ 2024-02-29 14:50 UTC (permalink / raw)
  To: kernel-janitors, linux-kernel
  Cc: Matthias Schiffer, Markus Niebel, Lee Jones, Lukas Bulwahn,
	Lukas Bulwahn

Hello,

Am Donnerstag, 23. November 2023, 12:32:45 CET schrieb Lukas Bulwahn:
> Commit 77da3f22b3d5 ("MAINTAINERS: Add entry for TQ-Systems device trees
> and drivers") adds some file patterns for files in arch/arm/boot/dts/, but
> those patterns do not match any files in the repository. Hence,
> ./scripts/get_maintainer.pl --self-test=patterns complains about broken
> references. The files of interest are actually in the directory
> arch/arm/boot/dts/nxp/imx/.
> 
> Adjust the file patterns to match the intended files.
> 
> Fixes: 77da3f22b3d5 ("MAINTAINERS: Add entry for TQ-Systems device trees and drivers")
> Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
> Reviewed-by: Alexander Stein <alexander.stein@ew.tq-group.com>

any feedback? Can this be merged?

Thanks,
Alexander

> ---
>  MAINTAINERS | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index df7a57ac864e..1e439b08d5d4 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -22084,9 +22084,9 @@ TQ SYSTEMS BOARD & DRIVER SUPPORT
>  L:	linux@ew.tq-group.com
>  S:	Supported
>  W:	https://www.tq-group.com/en/products/tq-embedded/
> -F:	arch/arm/boot/dts/imx*mba*.dts*
> -F:	arch/arm/boot/dts/imx*tqma*.dts*
> -F:	arch/arm/boot/dts/mba*.dtsi
> +F:	arch/arm/boot/dts/nxp/imx/imx*mba*.dts*
> +F:	arch/arm/boot/dts/nxp/imx/imx*tqma*.dts*
> +F:	arch/arm/boot/dts/nxp/imx/mba*.dtsi
>  F:	arch/arm64/boot/dts/freescale/fsl-*tqml*.dts*
>  F:	arch/arm64/boot/dts/freescale/imx*mba*.dts*
>  F:	arch/arm64/boot/dts/freescale/imx*tqma*.dts*
> 


-- 
TQ-Systems GmbH | Mühlstraße 2, Gut Delling | 82229 Seefeld, Germany
Amtsgericht München, HRB 105018
Geschäftsführer: Detlef Schneider, Rüdiger Stahl, Stefan Schneider
http://www.tq-group.com/



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

* Re: [PATCH] MAINTAINERS: adjust file patterns in TQ SYSTEMS BOARD & DRIVER SUPPORT
  2024-02-29 14:50 ` Alexander Stein
@ 2024-05-22 11:00   ` Alexander Stein
  0 siblings, 0 replies; 6+ messages in thread
From: Alexander Stein @ 2024-05-22 11:00 UTC (permalink / raw)
  To: kernel-janitors, linux-kernel
  Cc: Matthias Schiffer, Markus Niebel, Lee Jones, Lukas Bulwahn,
	Lukas Bulwahn

Hi,

Am Donnerstag, 29. Februar 2024, 15:50:04 CEST schrieb Alexander Stein:
> Hello,
> 
> Am Donnerstag, 23. November 2023, 12:32:45 CET schrieb Lukas Bulwahn:
> > Commit 77da3f22b3d5 ("MAINTAINERS: Add entry for TQ-Systems device trees
> > and drivers") adds some file patterns for files in arch/arm/boot/dts/, but
> > those patterns do not match any files in the repository. Hence,
> > ./scripts/get_maintainer.pl --self-test=patterns complains about broken
> > references. The files of interest are actually in the directory
> > arch/arm/boot/dts/nxp/imx/.
> > 
> > Adjust the file patterns to match the intended files.
> > 
> > Fixes: 77da3f22b3d5 ("MAINTAINERS: Add entry for TQ-Systems device trees and drivers")
> > Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
> > Reviewed-by: Alexander Stein <alexander.stein@ew.tq-group.com>
> 
> any feedback? Can this be merged?

Another gentle ping. Just noticed as [1] was not sent to our list.

Best regards,
Alexander

[1] https://lore.kernel.org/all/20240520060222.2980-1-zajec5@gmail.com/

> > ---
> >  MAINTAINERS | 6 +++---
> >  1 file changed, 3 insertions(+), 3 deletions(-)
> > 
> > diff --git a/MAINTAINERS b/MAINTAINERS
> > index df7a57ac864e..1e439b08d5d4 100644
> > --- a/MAINTAINERS
> > +++ b/MAINTAINERS
> > @@ -22084,9 +22084,9 @@ TQ SYSTEMS BOARD & DRIVER SUPPORT
> >  L:	linux@ew.tq-group.com
> >  S:	Supported
> >  W:	https://www.tq-group.com/en/products/tq-embedded/
> > -F:	arch/arm/boot/dts/imx*mba*.dts*
> > -F:	arch/arm/boot/dts/imx*tqma*.dts*
> > -F:	arch/arm/boot/dts/mba*.dtsi
> > +F:	arch/arm/boot/dts/nxp/imx/imx*mba*.dts*
> > +F:	arch/arm/boot/dts/nxp/imx/imx*tqma*.dts*
> > +F:	arch/arm/boot/dts/nxp/imx/mba*.dtsi
> >  F:	arch/arm64/boot/dts/freescale/fsl-*tqml*.dts*
> >  F:	arch/arm64/boot/dts/freescale/imx*mba*.dts*
> >  F:	arch/arm64/boot/dts/freescale/imx*tqma*.dts*
> > 
> 
> 
> 


-- 
TQ-Systems GmbH | Mühlstraße 2, Gut Delling | 82229 Seefeld, Germany
Amtsgericht München, HRB 105018
Geschäftsführer: Detlef Schneider, Rüdiger Stahl, Stefan Schneider
http://www.tq-group.com/



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

end of thread, other threads:[~2024-05-22 11:00 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-23 11:32 [PATCH] MAINTAINERS: adjust file patterns in TQ SYSTEMS BOARD & DRIVER SUPPORT Lukas Bulwahn
2024-02-29 14:50 ` Alexander Stein
2024-05-22 11:00   ` Alexander Stein
  -- strict thread matches above, loose matches on Subject: below --
2023-08-25  5:58 Lukas Bulwahn
2023-08-25  6:19 ` Alexander Stein
2023-11-03  8:15   ` Alexander Stein

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox