diff options
author | Utkarsh Verma <utkarshverma294@gmail.com> | 2021-09-26 01:47:46 +0530 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2021-09-27 11:39:16 -0600 |
commit | cbb817fc2effcbee0eb44303eefbc8171fc2b12f (patch) | |
tree | 41ad36bf9899c5ff7570e0b8b645110c1c6fc563 /Documentation/dev-tools | |
parent | 15ce51f55e15d512a8e3467c0bcbb0f49cd42e05 (diff) | |
download | linux-cbb817fc2effcbee0eb44303eefbc8171fc2b12f.tar.bz2 |
docs: checkpatch: add UNNECESSARY/UNSPECIFIED_INT and UNNECESSARY_ELSE
Added and documented 3 new message types:
- UNNECESSARY_INT
- UNSPECIFIED_INT
- UNNECESSARY_ELSE
Signed-off-by: Utkarsh Verma <utkarshverma294@gmail.com>
Link: https://lore.kernel.org/r/20210925201746.15917-1-utkarshverma294@gmail.com
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/dev-tools')
-rw-r--r-- | Documentation/dev-tools/checkpatch.rst | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/Documentation/dev-tools/checkpatch.rst b/Documentation/dev-tools/checkpatch.rst index 70480e38848e..4f89c363db08 100644 --- a/Documentation/dev-tools/checkpatch.rst +++ b/Documentation/dev-tools/checkpatch.rst @@ -956,6 +956,13 @@ Functions and Variables return bar; + **UNNECESSARY_INT** + int used after short, long and long long is unnecessary. So remove it. + + **UNSPECIFIED_INT** + Kernel style prefers "unsigned int <foo>" over "unsigned <foo>" and + "signed int <foo>" over "signed <foo>". + Permissions ----------- @@ -1204,3 +1211,43 @@ Others **TYPO_SPELLING** Some words may have been misspelled. Consider reviewing them. + + **UNNECESSARY_ELSE** + Using an else statement just after a return or a break statement is + unnecassary. For example:: + + for (i = 0; i < 100; i++) { + int foo = bar(); + if (foo < 1) + break; + else + usleep(1); + } + + is generally better written as:: + + for (i = 0; i < 100; i++) { + int foo = bar(); + if (foo < 1) + break; + usleep(1); + } + + So remove the else statement. But suppose if a if-else statement each + with a single return statement, like:: + + if (foo) + return bar; + else + return baz; + + then by removing the else statement:: + + if (foo) + return bar; + return baz; + + their is no significant increase in the readability and one can argue + that the first form is more readable because of indentation, so for + such cases do not convert the existing code from first form to second + form or vice-versa. |