[PATCH] patman: Parse checkpatch by message instead of by line

2021-03-31 Thread Evan Benn
Parse each empty-line-delimited message separately. This saves having to deal with all the different line content styles, we only care about the header ERROR | WARNING | NOTE... Signed-off-by: Evan Benn --- tools/patman/checkpatch.py | 205 +++-- 1 file changed

Re: [PATCH] patman: Parse checkpatch by message instead of by line

2021-03-31 Thread Evan Benn
Apologies, I needed to rebase vs uboot/next, I will do that and resend. On Thu, Apr 1, 2021 at 12:31 PM Evan Benn wrote: > > Parse each empty-line-delimited message separately. This saves having to > deal with all the different line content styles, we only care about the > header ERR

[PATCH] patman: Parse checkpatch by message instead of by line

2021-03-31 Thread Evan Benn
Parse each empty-line-delimited message separately. This saves having to deal with all the different line content styles, we only care about the header ERROR | WARNING | NOTE... Also make checkpatch print line information for a uboot specific warning. Signed-off-by: Evan Benn --- scripts