[dpdk-dev] [PATCH] scripts: fix checkpatch from standard input

2016-11-30 Thread Thomas Monjalon
2016-11-28 16:21, Olivier Matz: > On Mon, 21 Nov 2016 23:42:41 +0100, Thomas Monjalon > wrote: > > When checking a valid patch from standard input, > > the footer lines of the report are not filtered out. > > > > The function check is called outside of any loop, > > so the statement continue has

[dpdk-dev] [PATCH] scripts: fix checkpatch from standard input

2016-11-28 Thread Olivier Matz
On Mon, 21 Nov 2016 23:42:41 +0100, Thomas Monjalon wrote: > When checking a valid patch from standard input, > the footer lines of the report are not filtered out. > > The function check is called outside of any loop, > so the statement continue has no effect and the footer is printed. > > Fixe

[dpdk-dev] [PATCH] scripts: fix checkpatch from standard input

2016-11-21 Thread Thomas Monjalon
When checking a valid patch from standard input, the footer lines of the report are not filtered out. The function check is called outside of any loop, so the statement continue has no effect and the footer is printed. Fixes: 8005feef421d ("scripts: add standard input to checkpatch") Signed-off-