[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <6c8bbcbe2f3af638d2286baf1acc9bfb723bf95b.camel@perches.com>
Date: Mon, 02 Sep 2019 12:24:20 -0700
From: Joe Perches <joe@...ches.com>
To: Sebastian Reichel <sre@...nel.org>,
"Matwey V. Kornilov" <matwey@....msu.ru>,
Linus Torvalds <torvalds@...ux-foundation.org>
Cc: matwey.kornilov@...il.com,
"open list:SYSTEM RESET/SHUTDOWN DRIVERS" <linux-pm@...r.kernel.org>,
open list <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] power: reset: reboot-mode: Fix author email format
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@....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
Powered by blists - more mailing lists