Skip to content

Commit

Permalink
checkpatch: Increase recommended line length to 100
Browse files Browse the repository at this point in the history
This is to match a recent kernel checkpatch change that
also increased it to 100 line length.

Signed-off-by: Roi Dayan <roid@mellanox.com>
Signed-off-by: 0-day Robot <robot@bytheb.org>
  • Loading branch information
roidayan authored and ovsrobot committed Jun 11, 2020
1 parent 5042815 commit cd10b4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utilities/checkpatch.py
Expand Up @@ -287,8 +287,8 @@ def pointer_whitespace_check(line):

def line_length_check(line):
"""Return TRUE if the line length is too long"""
if len(line) > 79:
print_warning("Line is %d characters long (recommended limit is 79)"
if len(line) > 100:
print_warning("Line is %d characters long (recommended limit is 100)"
% len(line))
return True
return False
Expand Down

0 comments on commit cd10b4b

Please sign in to comment.