Linux-ARM-Kernel Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH][next] scsi: phy: mediatek: fix typo in author's email address
@ 2019-03-20 21:22 Colin King
  2019-03-20 21:22 ` Colin King
  2019-03-20 21:33 ` Gustavo A. R. Silva
  0 siblings, 2 replies; 5+ messages in thread
From: Colin King @ 2019-03-20 21:22 UTC (permalink / raw)
  To: Stanley Chu, Chunfeng Yun, Kishon Vijay Abraham I,
	Matthias Brugger, linux-arm-kernel, linux-mediatek
  Cc: kernel-janitors, linux-kernel

From: Colin Ian King <colin.king@canonical.com>

There is a typo in the module author's email address. Fix this.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/phy/mediatek/phy-mtk-ufs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/phy/mediatek/phy-mtk-ufs.c b/drivers/phy/mediatek/phy-mtk-ufs.c
index 9a80a76d7990..cf94f5c35dc5 100644
--- a/drivers/phy/mediatek/phy-mtk-ufs.c
+++ b/drivers/phy/mediatek/phy-mtk-ufs.c
@@ -241,5 +241,5 @@ static struct platform_driver ufs_mtk_phy_driver = {
 module_platform_driver(ufs_mtk_phy_driver);
 
 MODULE_DESCRIPTION("Universal Flash Storage (UFS) MediaTek MPHY");
-MODULE_AUTHOR("Stanley Chu <stanley.chu@medaitek.com>");
+MODULE_AUTHOR("Stanley Chu <stanley.chu@mediatek.com>");
 MODULE_LICENSE("GPL v2");
-- 
2.20.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [PATCH][next] scsi: phy: mediatek: fix typo in author's email address
  2019-03-20 21:22 [PATCH][next] scsi: phy: mediatek: fix typo in author's email address Colin King
@ 2019-03-20 21:22 ` Colin King
  2019-03-20 23:02   ` Chunfeng Yun
  2019-03-20 21:33 ` Gustavo A. R. Silva
  1 sibling, 1 reply; 5+ messages in thread
From: Colin King @ 2019-03-20 21:22 UTC (permalink / raw)
  To: Stanley Chu, Chunfeng Yun, Kishon Vijay Abraham I,
	Matthias Brugger, linux-arm-kernel, linux-mediatek
  Cc: kernel-janitors, linux-kernel

From: Colin Ian King <colin.king@canonical.com>

There is a typo in the module author's email address. Fix this.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/phy/mediatek/phy-mtk-ufs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/phy/mediatek/phy-mtk-ufs.c b/drivers/phy/mediatek/phy-mtk-ufs.c
index 9a80a76d7990..cf94f5c35dc5 100644
--- a/drivers/phy/mediatek/phy-mtk-ufs.c
+++ b/drivers/phy/mediatek/phy-mtk-ufs.c
@@ -241,5 +241,5 @@ static struct platform_driver ufs_mtk_phy_driver = {
 module_platform_driver(ufs_mtk_phy_driver);
 
 MODULE_DESCRIPTION("Universal Flash Storage (UFS) MediaTek MPHY");
-MODULE_AUTHOR("Stanley Chu <stanley.chu@medaitek.com>");
+MODULE_AUTHOR("Stanley Chu <stanley.chu@mediatek.com>");
 MODULE_LICENSE("GPL v2");
-- 
2.20.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH][next] scsi: phy: mediatek: fix typo in author's email address
  2019-03-20 21:22 [PATCH][next] scsi: phy: mediatek: fix typo in author's email address Colin King
  2019-03-20 21:22 ` Colin King
@ 2019-03-20 21:33 ` Gustavo A. R. Silva
  1 sibling, 0 replies; 5+ messages in thread
From: Gustavo A. R. Silva @ 2019-03-20 21:33 UTC (permalink / raw)
  To: Colin King, Stanley Chu, Chunfeng Yun, Kishon Vijay Abraham I,
	Matthias Brugger, linux-arm-kernel, linux-mediatek
  Cc: kernel-janitors, linux-kernel



On 3/20/19 4:22 PM, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> There is a typo in the module author's email address. Fix this.
> 

This is priceless!

Acked-by: Gustavo A. R. Silva <gustavo@embeddedor.com>

Thanks, Colin.
--
Gustavo

> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  drivers/phy/mediatek/phy-mtk-ufs.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/phy/mediatek/phy-mtk-ufs.c b/drivers/phy/mediatek/phy-mtk-ufs.c
> index 9a80a76d7990..cf94f5c35dc5 100644
> --- a/drivers/phy/mediatek/phy-mtk-ufs.c
> +++ b/drivers/phy/mediatek/phy-mtk-ufs.c
> @@ -241,5 +241,5 @@ static struct platform_driver ufs_mtk_phy_driver = {
>  module_platform_driver(ufs_mtk_phy_driver);
>  
>  MODULE_DESCRIPTION("Universal Flash Storage (UFS) MediaTek MPHY");
> -MODULE_AUTHOR("Stanley Chu <stanley.chu@medaitek.com>");
> +MODULE_AUTHOR("Stanley Chu <stanley.chu@mediatek.com>");
>  MODULE_LICENSE("GPL v2");
> 

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH][next] scsi: phy: mediatek: fix typo in author's email address
  2019-03-20 21:22 ` Colin King
@ 2019-03-20 23:02   ` Chunfeng Yun
  2019-03-20 23:10     ` Stanley Chu
  0 siblings, 1 reply; 5+ messages in thread
From: Chunfeng Yun @ 2019-03-20 23:02 UTC (permalink / raw)
  To: Colin King
  Cc: kernel-janitors, linux-kernel, Kishon Vijay Abraham I,
	linux-mediatek, Matthias Brugger, Stanley Chu, linux-arm-kernel

Hi Colin,

On Wed, 2019-03-20 at 21:22 +0000, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> There is a typo in the module author's email address. Fix this.
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  drivers/phy/mediatek/phy-mtk-ufs.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/phy/mediatek/phy-mtk-ufs.c b/drivers/phy/mediatek/phy-mtk-ufs.c
> index 9a80a76d7990..cf94f5c35dc5 100644
> --- a/drivers/phy/mediatek/phy-mtk-ufs.c
> +++ b/drivers/phy/mediatek/phy-mtk-ufs.c
> @@ -241,5 +241,5 @@ static struct platform_driver ufs_mtk_phy_driver = {
>  module_platform_driver(ufs_mtk_phy_driver);
>  
>  MODULE_DESCRIPTION("Universal Flash Storage (UFS) MediaTek MPHY");
> -MODULE_AUTHOR("Stanley Chu <stanley.chu@medaitek.com>");
> +MODULE_AUTHOR("Stanley Chu <stanley.chu@mediatek.com>");
>  MODULE_LICENSE("GPL v2");

Thank you.

Acked-by: Chunfeng Yun <chunfeng.yun@mediatek.com>



_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH][next] scsi: phy: mediatek: fix typo in author's email address
  2019-03-20 23:02   ` Chunfeng Yun
@ 2019-03-20 23:10     ` Stanley Chu
  0 siblings, 0 replies; 5+ messages in thread
From: Stanley Chu @ 2019-03-20 23:10 UTC (permalink / raw)
  To: Chunfeng Yun
  Cc: kernel-janitors, linux-kernel, Kishon Vijay Abraham I,
	linux-mediatek, Matthias Brugger, Colin King, linux-arm-kernel

Hi Colin,

On Thu, 2019-03-21 at 07:02 +0800, Chunfeng Yun wrote:
> Hi Colin,
> 
> On Wed, 2019-03-20 at 21:22 +0000, Colin King wrote:
> > From: Colin Ian King <colin.king@canonical.com>
> > 
> > There is a typo in the module author's email address. Fix this.
> > 
> > Signed-off-by: Colin Ian King <colin.king@canonical.com>
> > ---
> >  drivers/phy/mediatek/phy-mtk-ufs.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/drivers/phy/mediatek/phy-mtk-ufs.c b/drivers/phy/mediatek/phy-mtk-ufs.c
> > index 9a80a76d7990..cf94f5c35dc5 100644
> > --- a/drivers/phy/mediatek/phy-mtk-ufs.c
> > +++ b/drivers/phy/mediatek/phy-mtk-ufs.c
> > @@ -241,5 +241,5 @@ static struct platform_driver ufs_mtk_phy_driver = {
> >  module_platform_driver(ufs_mtk_phy_driver);
> >  
> >  MODULE_DESCRIPTION("Universal Flash Storage (UFS) MediaTek MPHY");
> > -MODULE_AUTHOR("Stanley Chu <stanley.chu@medaitek.com>");
> > +MODULE_AUTHOR("Stanley Chu <stanley.chu@mediatek.com>");

Thanks for fixing this.

Reviewed-by: Stanley Chu <stanley.chu@mediatek.com>

> >  MODULE_LICENSE("GPL v2");
> 
> Thank you.
> 
> Acked-by: Chunfeng Yun <chunfeng.yun@mediatek.com>
> 
> 



_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2019-03-20 23:14 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-03-20 21:22 [PATCH][next] scsi: phy: mediatek: fix typo in author's email address Colin King
2019-03-20 21:22 ` Colin King
2019-03-20 23:02   ` Chunfeng Yun
2019-03-20 23:10     ` Stanley Chu
2019-03-20 21:33 ` Gustavo A. R. Silva

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