| Commit message (Expand) | Author | Age | Files | Lines |
* | checkpatch: fix detection of git repository | Richard Genoud | 2014-02-10 | 1 | -2/+2 |
* | checkpatch.pl: check for function declarations without arguments | Joe Perches | 2014-01-27 | 1 | -0/+9 |
* | checkpatch: prefer ether_addr_copy to memcpy(foo, bar, ETH_ALEN) | Joe Perches | 2014-01-23 | 1 | -0/+10 |
* | checkpatch: add DT compatible string documentation checks | Rob Herring | 2014-01-23 | 1 | -0/+27 |
* | checkpatch: only flag FSF address, not gnu.org URL | Alexander Duyck | 2014-01-23 | 1 | -3/+1 |
* | checkpatch: add tests for function pointer style misuses | Joe Perches | 2014-01-23 | 1 | -0/+59 |
* | checkpatch: update the FSF/GPL address check | Joe Perches | 2014-01-23 | 1 | -5/+6 |
* | checkpatch: check for if's with unnecessary parentheses | Joe Perches | 2014-01-23 | 1 | -0/+14 |
* | checkpatch: improve space before tab --fix option | Joe Perches | 2014-01-23 | 1 | -2/+4 |
* | checkpatch: add a --fix-inplace option | Joe Perches | 2014-01-23 | 1 | -1/+9 |
* | checkpatch: attempt to find missing switch/case break; | Joe Perches | 2014-01-23 | 1 | -0/+25 |
* | checkpatch: add warning of future __GFP_NOFAIL use | David Rientjes | 2014-01-23 | 1 | -0/+6 |
* | checkpatch: warn only on "space before semicolon" at end of line | Joe Perches | 2014-01-23 | 1 | -1/+1 |
* | checkpatch: more comprehensive split strings warning | Joe Perches | 2014-01-23 | 1 | -8/+4 |
* | PCI/checkpatch: Deprecate DEFINE_PCI_DEVICE_TABLE | Joe Perches | 2013-12-13 | 1 | -4/+7 |
* | checkpatch: fix "Use of uninitialized value" warnings | Joe Perches | 2013-11-21 | 1 | -0/+1 |
* | checkpatch: add check for sscanf without return use | Joe Perches | 2013-11-13 | 1 | -0/+17 |
* | checkpatch: don't require kernel style __attribute__ shortcuts in uapi paths | Joe Perches | 2013-11-13 | 1 | -7/+12 |
* | checkpatch: improve "return is not a function" test | Joe Perches | 2013-11-13 | 1 | -14/+4 |
* | checkpatch.pl: check for the FSF mailing address | Josh Triplett | 2013-11-13 | 1 | -0/+12 |
* | checkpatch: make the memory barrier test noisier | Joe Perches | 2013-11-13 | 1 | -2/+2 |
* | checkpatch: add rules to check init attribute and const defects | Joe Perches | 2013-11-13 | 1 | -2/+34 |
* | checkpatch: add test for #defines of ARCH_HAS_<foo> | Joe Perches | 2013-11-13 | 1 | -8/+14 |
* | checkpatch: find CamelCase definitions of struct/union/enum | Joe Perches | 2013-11-13 | 1 | -2/+3 |
* | checkpatch: update seq_<foo> tests | Joe Perches | 2013-11-13 | 1 | -3/+4 |
* | checkpatch: extend CamelCase types and ignore existing CamelCase uses in a patch | Joe Perches | 2013-11-13 | 1 | -2/+10 |
* | checkpatch: report missing spaces around trigraphs with --strict | Joe Perches | 2013-11-13 | 1 | -9/+7 |
* | checkpatch: make extern in .h prototypes quieter | Joe Perches | 2013-09-24 | 1 | -2/+2 |
* | checkpatch: add test for positional misuse of section specifiers like __initdata | Joe Perches | 2013-09-11 | 1 | -1/+46 |
* | checkpatch: fix perl version 5.12 and earlier incompatibility | Joe Perches | 2013-09-11 | 1 | -2/+2 |
* | checkpatch: reduce runtime/cpu time used | Joe Perches | 2013-09-11 | 1 | -1/+3 |
* | checkpatch: better --fix of SPACING errors. | Joe Perches | 2013-09-11 | 1 | -22/+42 |
* | checkpatch: ignore #define TRACE_<foo> macros | Joe Perches | 2013-09-11 | 1 | -1/+2 |
* | checkpatch: add --types option to report only specific message types | Joe Perches | 2013-09-11 | 1 | -18/+38 |
* | checkpatch: fix networking kernel-doc block comment defect | Joe Perches | 2013-09-11 | 1 | -0/+1 |
* | checkpatch: warn when using extern with function prototypes in .h files | Joe Perches | 2013-09-11 | 1 | -0/+10 |
* | checkpatch: check for duplicate signatures | Joe Perches | 2013-09-11 | 1 | -0/+12 |
* | checkpatch: enforce sane perl version | Dave Hansen | 2013-09-11 | 1 | -0/+12 |
* | checkpatch: check CamelCase by word, not by $Lval | Joe Perches | 2013-09-11 | 1 | -5/+9 |
* | checkpatch: add a few more --fix corrections | Joe Perches | 2013-09-11 | 1 | -38/+84 |
* | checkpatch: make the CamelCase cache work for non-git trees too | Joe Perches | 2013-07-09 | 1 | -19/+35 |
* | checkpatch: cache last camelcase hash as .checkpatch-camelcase.<commit> | Joe Perches | 2013-07-03 | 1 | -0/+26 |
* | checkpatch: allow longer logging function names | Jacob Keller | 2013-07-03 | 1 | -1/+1 |
* | checkpatch: ignore existing CamelCase uses from include/... | Joe Perches | 2013-07-03 | 1 | -7/+50 |
* | checkpatch: ignore SI unit CamelCase variants like "_uV" | Joe Perches | 2013-07-03 | 1 | -0/+3 |
* | checkpatch: move test for space before semicolon after operator spacing | Joe Perches | 2013-07-03 | 1 | -10/+10 |
* | checkpatch: create an EXPERIMENTAL --fix option to correct patches | Joe Perches | 2013-07-03 | 1 | -88/+354 |
* | checkpatch: improve "no space after cast" test | Joe Perches | 2013-07-03 | 1 | -2/+3 |
* | checkpatch: add a --strict test for comparison to true/false | Joe Perches | 2013-07-03 | 1 | -0/+27 |
* | checkpatch: don't warn on blank lines before/after braces as often | Joe Perches | 2013-07-03 | 1 | -2/+2 |