This is to match a recent kernel checkpatch change that also increased it to 100 line length.
Signed-off-by: Roi Dayan <[email protected]> --- utilities/checkpatch.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utilities/checkpatch.py b/utilities/checkpatch.py index fc9e20bf1b5f..80ee6d827567 100755 --- a/utilities/checkpatch.py +++ b/utilities/checkpatch.py @@ -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 -- 2.8.4 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
