linux-mediatek.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] MAINTAINERS: repair file pattern in MEDIATEK IOMMU DRIVER
@ 2021-02-08  6:10 Lukas Bulwahn
  2021-02-08  6:35 ` Yong Wu
  0 siblings, 1 reply; 3+ messages in thread
From: Lukas Bulwahn @ 2021-02-08  6:10 UTC (permalink / raw)
  To: Yong Wu, linux-mediatek, iommu, Will Deacon
  Cc: Chun-Kuang Hu, linux-kernel, kernel-janitors, Ralf Ramsauer,
	Tomasz Figa, Joe Perches, Lukas Bulwahn, Pia Eichinger

Commit 6af4873852c4 ("MAINTAINERS: Add entry for MediaTek IOMMU") mentions
the pattern 'drivers/iommu/mtk-iommu*', but the files are actually named
with an underscore, not with a hyphen.

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

  warning: no file matches  F:    drivers/iommu/mtk-iommu*

Repair this minor typo in the file pattern.

Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
---
applies cleanly on next-20210205

Yong, please ack.
Will, please pick this minor fixup for your iommu-next tree.

 MAINTAINERS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 674f42375acf..6b507e8d7828 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -11200,7 +11200,7 @@ L:	iommu@lists.linux-foundation.org
 L:	linux-mediatek@lists.infradead.org (moderated for non-subscribers)
 S:	Supported
 F:	Documentation/devicetree/bindings/iommu/mediatek*
-F:	drivers/iommu/mtk-iommu*
+F:	drivers/iommu/mtk_iommu*
 F:	include/dt-bindings/memory/mt*-port.h
 
 MEDIATEK JPEG DRIVER
-- 
2.17.1


_______________________________________________
Linux-mediatek mailing list
Linux-mediatek@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-mediatek

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

* Re: [PATCH] MAINTAINERS: repair file pattern in MEDIATEK IOMMU DRIVER
  2021-02-08  6:10 [PATCH] MAINTAINERS: repair file pattern in MEDIATEK IOMMU DRIVER Lukas Bulwahn
@ 2021-02-08  6:35 ` Yong Wu
  2021-02-08  8:13   ` Joerg Roedel
  0 siblings, 1 reply; 3+ messages in thread
From: Yong Wu @ 2021-02-08  6:35 UTC (permalink / raw)
  To: Lukas Bulwahn, Joerg Roedel
  Cc: Chun-Kuang Hu, linux-kernel, kernel-janitors, Ralf Ramsauer,
	Tomasz Figa, iommu, linux-mediatek, Joe Perches, Pia Eichinger,
	Will Deacon

On Mon, 2021-02-08 at 07:10 +0100, Lukas Bulwahn wrote:
> Commit 6af4873852c4 ("MAINTAINERS: Add entry for MediaTek IOMMU") mentions
> the pattern 'drivers/iommu/mtk-iommu*', but the files are actually named
> with an underscore, not with a hyphen.
> 
> Hence, ./scripts/get_maintainer.pl --self-test=patterns complains:
> 
>   warning: no file matches  F:    drivers/iommu/mtk-iommu*
> 
> Repair this minor typo in the file pattern.
> 
> Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
> ---
> applies cleanly on next-20210205
> 
> Yong, please ack.

+Joerg.

sorry for the typo.

Acked-by: Yong Wu <yong.wu@mediatek.com>

> Will, please pick this minor fixup for your iommu-next tree.
> 
>  MAINTAINERS | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 674f42375acf..6b507e8d7828 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -11200,7 +11200,7 @@ L:	iommu@lists.linux-foundation.org
>  L:	linux-mediatek@lists.infradead.org (moderated for non-subscribers)
>  S:	Supported
>  F:	Documentation/devicetree/bindings/iommu/mediatek*
> -F:	drivers/iommu/mtk-iommu*
> +F:	drivers/iommu/mtk_iommu*
>  F:	include/dt-bindings/memory/mt*-port.h
>  
>  MEDIATEK JPEG DRIVER

_______________________________________________
Linux-mediatek mailing list
Linux-mediatek@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-mediatek

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

* Re: [PATCH] MAINTAINERS: repair file pattern in MEDIATEK IOMMU DRIVER
  2021-02-08  6:35 ` Yong Wu
@ 2021-02-08  8:13   ` Joerg Roedel
  0 siblings, 0 replies; 3+ messages in thread
From: Joerg Roedel @ 2021-02-08  8:13 UTC (permalink / raw)
  To: Yong Wu
  Cc: Chun-Kuang Hu, linux-kernel, kernel-janitors, Ralf Ramsauer,
	Tomasz Figa, iommu, linux-mediatek, Joe Perches, Lukas Bulwahn,
	Pia Eichinger, Will Deacon

On Mon, Feb 08, 2021 at 02:35:25PM +0800, Yong Wu wrote:
> On Mon, 2021-02-08 at 07:10 +0100, Lukas Bulwahn wrote:
> > Commit 6af4873852c4 ("MAINTAINERS: Add entry for MediaTek IOMMU") mentions
> > the pattern 'drivers/iommu/mtk-iommu*', but the files are actually named
> > with an underscore, not with a hyphen.
> > 
> > Hence, ./scripts/get_maintainer.pl --self-test=patterns complains:
> > 
> >   warning: no file matches  F:    drivers/iommu/mtk-iommu*
> > 
> > Repair this minor typo in the file pattern.
> > 
> > Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
> > ---
> > applies cleanly on next-20210205
> > 
> > Yong, please ack.
> 
> +Joerg.
> 
> sorry for the typo.
> 
> Acked-by: Yong Wu <yong.wu@mediatek.com>

Applied, thanks.

_______________________________________________
Linux-mediatek mailing list
Linux-mediatek@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-mediatek

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

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

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-08  6:10 [PATCH] MAINTAINERS: repair file pattern in MEDIATEK IOMMU DRIVER Lukas Bulwahn
2021-02-08  6:35 ` Yong Wu
2021-02-08  8:13   ` Joerg Roedel

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