Commit 9e79a8d17c45ac4ac1414ab349f68b0b55537abd

Authored by Bo Shen
Committed by Joe Hershberger
1 parent 348e47f766

checkpatch: add ignore for network block comment style checking

When use checkpatch.pl to check network related patch, it will report
--->8---
WARNING: networking block comments don't use an empty /* line,
use /* Comment...
---<8---

So, add --ignore NETWORKING_BLOCK_COMMENT_STYLE into .checkpatch.conf
This will help to keep all driver include network related driver use
the same comment style

Signed-off-by: Bo Shen <voice.shen@atmel.com>

Showing 1 changed file with 3 additions and 0 deletions Side-by-side Diff

... ... @@ -18,4 +18,7 @@
18 18  
19 19 # Not Linux, so we don't recommend usleep_range() over udelay()
20 20 --ignore USLEEP_RANGE
  21 +
  22 +# Ignore networking block comment style
  23 +--ignore NETWORKING_BLOCK_COMMENT_STYLE