linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] power: reset: reboot-mode: Fix author email format
@ 2019-07-13 15:42 Matwey V. Kornilov
  2019-09-02 19:06 ` Sebastian Reichel
  0 siblings, 1 reply; 3+ messages in thread
From: Matwey V. Kornilov @ 2019-07-13 15:42 UTC (permalink / raw)
  To: Sebastian Reichel
  Cc: matwey.kornilov, Matwey V. Kornilov,
	open list:SYSTEM RESET/SHUTDOWN DRIVERS, open list

Closing angle bracket was missing.

Signed-off-by: Matwey V. Kornilov <matwey@sai.msu.ru>
---
 drivers/power/reset/reboot-mode.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/power/reset/reboot-mode.c b/drivers/power/reset/reboot-mode.c
index 06ff035b57f5..b4076b10b893 100644
--- a/drivers/power/reset/reboot-mode.c
+++ b/drivers/power/reset/reboot-mode.c
@@ -190,6 +190,6 @@ void devm_reboot_mode_unregister(struct device *dev,
 }
 EXPORT_SYMBOL_GPL(devm_reboot_mode_unregister);
 
-MODULE_AUTHOR("Andy Yan <andy.yan@rock-chips.com");
+MODULE_AUTHOR("Andy Yan <andy.yan@rock-chips.com>");
 MODULE_DESCRIPTION("System reboot mode core library");
 MODULE_LICENSE("GPL v2");
-- 
2.16.4


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

* Re: [PATCH] power: reset: reboot-mode: Fix author email format
  2019-07-13 15:42 [PATCH] power: reset: reboot-mode: Fix author email format Matwey V. Kornilov
@ 2019-09-02 19:06 ` Sebastian Reichel
  2019-09-02 19:24   ` Joe Perches
  0 siblings, 1 reply; 3+ messages in thread
From: Sebastian Reichel @ 2019-09-02 19:06 UTC (permalink / raw)
  To: Matwey V. Kornilov
  Cc: matwey.kornilov, open list:SYSTEM RESET/SHUTDOWN DRIVERS, open list

[-- Attachment #1: Type: text/plain, Size: 895 bytes --]

Hi,

On Sat, Jul 13, 2019 at 06:42:48PM +0300, Matwey V. Kornilov wrote:
> Closing angle bracket was missing.
> 
> Signed-off-by: Matwey V. Kornilov <matwey@sai.msu.ru>
> ---

Thanks, queued.

-- Sebastian

>  drivers/power/reset/reboot-mode.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/power/reset/reboot-mode.c b/drivers/power/reset/reboot-mode.c
> index 06ff035b57f5..b4076b10b893 100644
> --- a/drivers/power/reset/reboot-mode.c
> +++ b/drivers/power/reset/reboot-mode.c
> @@ -190,6 +190,6 @@ void devm_reboot_mode_unregister(struct device *dev,
>  }
>  EXPORT_SYMBOL_GPL(devm_reboot_mode_unregister);
>  
> -MODULE_AUTHOR("Andy Yan <andy.yan@rock-chips.com");
> +MODULE_AUTHOR("Andy Yan <andy.yan@rock-chips.com>");
>  MODULE_DESCRIPTION("System reboot mode core library");
>  MODULE_LICENSE("GPL v2");
> -- 
> 2.16.4
> 

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH] power: reset: reboot-mode: Fix author email format
  2019-09-02 19:06 ` Sebastian Reichel
@ 2019-09-02 19:24   ` Joe Perches
  0 siblings, 0 replies; 3+ messages in thread
From: Joe Perches @ 2019-09-02 19:24 UTC (permalink / raw)
  To: Sebastian Reichel, Matwey V. Kornilov, Linus Torvalds
  Cc: matwey.kornilov, open list:SYSTEM RESET/SHUTDOWN DRIVERS, open list

On Mon, 2019-09-02 at 21:06 +0200, Sebastian Reichel wrote:
> Hi,
> 
> On Sat, Jul 13, 2019 at 06:42:48PM +0300, Matwey V. Kornilov wrote:
> > Closing angle bracket was missing.
> > 
> > Signed-off-by: Matwey V. Kornilov <matwey@sai.msu.ru>
> > ---
> 
> Thanks, queued.

This is relatively widespread.

There are 80 more of these in the kernel tree.

$ git grep -P 'MODULE_AUTHOR.*<[^>]+$' | wc -l
81

Here's a trivial little script to fix them all:

$ git grep -P -n 'MODULE_AUTHOR.*<[^>]+$' | \
  while read entry ; do \
    file=$(echo $entry|cut -f1 -d:); \
    line=$(echo $entry|cut -f2 -d:); \
    sed -i "${line}s/\");/>\");/" $file; \
  done


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

end of thread, other threads:[~2019-09-02 19:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-13 15:42 [PATCH] power: reset: reboot-mode: Fix author email format Matwey V. Kornilov
2019-09-02 19:06 ` Sebastian Reichel
2019-09-02 19:24   ` Joe Perches

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