1. 17 Jul, 2019 1 commit
  2. 14 Jun, 2019 1 commit
  3. 22 May, 2019 1 commit
  4. 29 Mar, 2019 1 commit
  5. 25 Mar, 2019 1 commit
  6. 08 Mar, 2019 4 commits
  7. 21 Jan, 2019 1 commit
  8. 04 Jan, 2019 2 commits
  9. 12 Nov, 2018 2 commits
  10. 31 Oct, 2018 1 commit
  11. 04 Sep, 2018 2 commits
  12. 22 Aug, 2018 14 commits
  13. 14 Jul, 2018 1 commit
    • Joe Perches's avatar
      checkpatch: fix duplicate invalid vsprintf pointer extension '%p<foo>' messages · ffe07513
      Joe Perches authored
      Multiline statements with invalid %p<foo> uses produce multiple
      warnings.  Fix that.
      
      e.g.:
      
      $ cat t_block.c
      void foo(void)
      {
      	MY_DEBUG(drv->foo,
      		 "%pk",
      		 foo->boo);
      }
      
      $ ./scripts/checkpatch.pl -f t_block.c
      WARNING: Missing or malformed SPDX-License-Identifier tag in line 1
      #1: FILE: t_block.c:1:
      +void foo(void)
      
      WARNING: Invalid vsprintf pointer extension '%pk'
      #3: FILE: t_block.c:3:
      +	MY_DEBUG(drv->foo,
      +		 "%pk",
      +		 foo->boo);
      
      WARNING: Invalid vsprintf pointer extension '%pk'
      #3: FILE: t_block.c:3:
      +	MY_DEBUG(drv->foo,
      +		 "%pk",
      +		 foo->boo);
      
      total: 0 errors, 3 warnings, 6 lines checked
      
      NOTE: For some of the reported defects, checkpatch may be able to
            mechanically convert to the typical style using --fix or --fix-inplace.
      
      t_block.c has style problems, please review.
      
      NOTE: If any of the errors are false positives, please report
            them to the maintainer, see CHECKPATCH in MAINTAINERS.
      
      Link: http://lkml...
      ffe07513
  14. 27 Jun, 2018 1 commit
    • Linus Torvalds's avatar
      checkpatch: remove warning for 'old' stable@kernel.org address · 3b41c3e2
      Linus Torvalds authored
      
      It may not be the actual real stable mailing list address, but the
      stable scripts to actually pick up on the traditional way to mark stable
      patches.
      
      There are also reasons to explicitly avoid using the actual mailing list
      address, since security patches with embargo dates generally do want the
      stable marking, but don't want tools etc to mistakenly send the patch
      out to the mailing list early.
      
      So don't warn for things that are still actively used and explicitly
      supported.
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      3b41c3e2
  15. 08 Jun, 2018 2 commits
  16. 26 May, 2018 1 commit
  17. 17 May, 2018 1 commit
  18. 11 Apr, 2018 3 commits