From e8a59f30f1106af029b020aeec4e84febc3ad97e Mon Sep 17 00:00:00 2001 From: Junjie Mao Date: Fri, 26 Oct 2018 22:07:55 +0800 Subject: [PATCH] checkpatch: fix the line limit back to 120 The checkpatch configuration set by commit 7b06be9 ("HV: checkpatch: add configurations to customize checkpatch.pl") is unintendedly set to 20 (instead of 120). This patch fix the setting to the expected value. Tracked-On: #1557 Signed-off-by: Junjie Mao --- .checkpatch.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.checkpatch.conf b/.checkpatch.conf index 3fb0505b3..fd971ef10 100644 --- a/.checkpatch.conf +++ b/.checkpatch.conf @@ -1,4 +1,4 @@ --ignore BRACES --ignore GLOBAL_INITIALISERS --ignore INITIALISED_STATIC ---max-line-length=20 +--max-line-length=120