linux-staging.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
* [PATCH] MAINTAINERS: repair reference in USB IP DRIVER FOR HISILICON KIRIN 970
@ 2021-07-01  9:39 Lukas Bulwahn
  2021-07-01  9:51 ` Greg Kroah-Hartman
  2021-07-01 13:26 ` Mauro Carvalho Chehab
  0 siblings, 2 replies; 3+ messages in thread
From: Lukas Bulwahn @ 2021-07-01  9:39 UTC (permalink / raw)
  To: Mauro Carvalho Chehab, Greg Kroah-Hartman
  Cc: linuxarm, mauro.chehab, linux-phy, linux-staging, linux-usb,
	Ralf Ramsauer, kernel-janitors, linux-kernel, Lukas Bulwahn

Commit 8de6b7edd493 ("phy: phy-hi3670-usb3: move driver from staging into
phy") moves phy-hi3670-usb3.c from ./drivers/staging/hikey9xx/ to
./drivers/phy/hisilicon/, but the new file entry in MAINTAINERS refers to
./drivers/phy/hisilicon/phy-kirin970-usb3.c.

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

  warning: no file matches  F:  drivers/phy/hisilicon/phy-kirin970-usb3.c

Repair the file entry by referring to the right location.

Fixes: 8de6b7edd493 ("phy: phy-hi3670-usb3: move driver from staging into phy")
Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
---
applies cleanly on next-20210701

Mauro, please ack.
Greg, please pick this non-urgent minor fix on top of commit 8de6b7edd493

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

diff --git a/MAINTAINERS b/MAINTAINERS
index 66d047dc6880..a4e0c20b416a 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -19153,7 +19153,7 @@ M:	Mauro Carvalho Chehab <mchehab@kernel.org>
 L:	linux-usb@vger.kernel.org
 S:	Maintained
 F:	Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
-F:	drivers/phy/hisilicon/phy-kirin970-usb3.c
+F:	drivers/phy/hisilicon/phy-hi3670-usb3.c
 
 USB ISP116X DRIVER
 M:	Olav Kongas <ok@artecdesign.ee>
-- 
2.17.1


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

* Re: [PATCH] MAINTAINERS: repair reference in USB IP DRIVER FOR HISILICON KIRIN 970
  2021-07-01  9:39 [PATCH] MAINTAINERS: repair reference in USB IP DRIVER FOR HISILICON KIRIN 970 Lukas Bulwahn
@ 2021-07-01  9:51 ` Greg Kroah-Hartman
  2021-07-01 13:26 ` Mauro Carvalho Chehab
  1 sibling, 0 replies; 3+ messages in thread
From: Greg Kroah-Hartman @ 2021-07-01  9:51 UTC (permalink / raw)
  To: Lukas Bulwahn
  Cc: Mauro Carvalho Chehab, linuxarm, mauro.chehab, linux-phy,
	linux-staging, linux-usb, Ralf Ramsauer, kernel-janitors,
	linux-kernel

On Thu, Jul 01, 2021 at 11:39:03AM +0200, Lukas Bulwahn wrote:
> Commit 8de6b7edd493 ("phy: phy-hi3670-usb3: move driver from staging into
> phy") moves phy-hi3670-usb3.c from ./drivers/staging/hikey9xx/ to
> ./drivers/phy/hisilicon/, but the new file entry in MAINTAINERS refers to
> ./drivers/phy/hisilicon/phy-kirin970-usb3.c.
> 
> Hence, ./scripts/get_maintainer.pl --self-test=patterns complains:
> 
>   warning: no file matches  F:  drivers/phy/hisilicon/phy-kirin970-usb3.c
> 
> Repair the file entry by referring to the right location.
> 
> Fixes: 8de6b7edd493 ("phy: phy-hi3670-usb3: move driver from staging into phy")
> Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
> ---
> applies cleanly on next-20210701
> 
> Mauro, please ack.
> Greg, please pick this non-urgent minor fix on top of commit 8de6b7edd493

Thanks, I'll take this after 5.14-rc1 is out.

greg k-h

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

* Re: [PATCH] MAINTAINERS: repair reference in USB IP DRIVER FOR HISILICON KIRIN 970
  2021-07-01  9:39 [PATCH] MAINTAINERS: repair reference in USB IP DRIVER FOR HISILICON KIRIN 970 Lukas Bulwahn
  2021-07-01  9:51 ` Greg Kroah-Hartman
@ 2021-07-01 13:26 ` Mauro Carvalho Chehab
  1 sibling, 0 replies; 3+ messages in thread
From: Mauro Carvalho Chehab @ 2021-07-01 13:26 UTC (permalink / raw)
  To: Lukas Bulwahn
  Cc: Greg Kroah-Hartman, linuxarm, mauro.chehab, linux-phy,
	linux-staging, linux-usb, Ralf Ramsauer, kernel-janitors,
	linux-kernel

Em Thu,  1 Jul 2021 11:39:03 +0200
Lukas Bulwahn <lukas.bulwahn@gmail.com> escreveu:

> Commit 8de6b7edd493 ("phy: phy-hi3670-usb3: move driver from staging into
> phy") moves phy-hi3670-usb3.c from ./drivers/staging/hikey9xx/ to
> ./drivers/phy/hisilicon/, but the new file entry in MAINTAINERS refers to
> ./drivers/phy/hisilicon/phy-kirin970-usb3.c.
> 
> Hence, ./scripts/get_maintainer.pl --self-test=patterns complains:
> 
>   warning: no file matches  F:  drivers/phy/hisilicon/phy-kirin970-usb3.c
> 
> Repair the file entry by referring to the right location.
> 
> Fixes: 8de6b7edd493 ("phy: phy-hi3670-usb3: move driver from staging into phy")
> Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
> ---
> applies cleanly on next-20210701
> 
> Mauro, please ack.

Acked-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>

> Greg, please pick this non-urgent minor fix on top of commit 8de6b7edd493
> 
>  MAINTAINERS | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 66d047dc6880..a4e0c20b416a 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -19153,7 +19153,7 @@ M:	Mauro Carvalho Chehab <mchehab@kernel.org>
>  L:	linux-usb@vger.kernel.org
>  S:	Maintained
>  F:	Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
> -F:	drivers/phy/hisilicon/phy-kirin970-usb3.c
> +F:	drivers/phy/hisilicon/phy-hi3670-usb3.c
>  
>  USB ISP116X DRIVER
>  M:	Olav Kongas <ok@artecdesign.ee>



Thanks,
Mauro

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

end of thread, other threads:[~2021-07-01 13:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-01  9:39 [PATCH] MAINTAINERS: repair reference in USB IP DRIVER FOR HISILICON KIRIN 970 Lukas Bulwahn
2021-07-01  9:51 ` Greg Kroah-Hartman
2021-07-01 13:26 ` Mauro Carvalho Chehab

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