From: Joe Perches <joe@perches.com>
To: Sebastian Reichel <sre@kernel.org>,
"Matwey V. Kornilov" <matwey@sai.msu.ru>,
Linus Torvalds <torvalds@linux-foundation.org>
Cc: matwey.kornilov@gmail.com,
"open list:SYSTEM RESET/SHUTDOWN DRIVERS"
<linux-pm@vger.kernel.org>,
open list <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] power: reset: reboot-mode: Fix author email format
Date: Mon, 02 Sep 2019 12:24:20 -0700 [thread overview]
Message-ID: <6c8bbcbe2f3af638d2286baf1acc9bfb723bf95b.camel@perches.com> (raw)
In-Reply-To: <20190902190622.vvl7hcgfqayf6xmk@earth.universe>
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
prev parent reply other threads:[~2019-09-02 19:31 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
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 message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=6c8bbcbe2f3af638d2286baf1acc9bfb723bf95b.camel@perches.com \
--to=joe@perches.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=matwey.kornilov@gmail.com \
--cc=matwey@sai.msu.ru \
--cc=sre@kernel.org \
--cc=torvalds@linux-foundation.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox