1. 13 11月, 2018 2 次提交
  2. 31 10月, 2018 1 次提交
  3. 05 9月, 2018 2 次提交
  4. 23 8月, 2018 14 次提交
  5. 15 7月, 2018 1 次提交
  6. 27 6月, 2018 1 次提交
    • L
      checkpatch: remove warning for 'old' stable@kernel.org address · 3b41c3e2
      Linus Torvalds 提交于
      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: NLinus Torvalds <torvalds@linux-foundation.org>
      3b41c3e2
  7. 08 6月, 2018 2 次提交
  8. 26 5月, 2018 1 次提交
  9. 17 5月, 2018 1 次提交
  10. 12 4月, 2018 13 次提交
  11. 26 3月, 2018 2 次提交
    • U
      checkpatch: kconfig: prefer 'help' over '---help---' · 84af7a61
      Ulf Magnusson 提交于
      IMO, we should discourage '---help---' for new help texts, even in cases
      where it would be consistent with other help texts in the file. This
      will help if we ever want to get rid of '---help---' in the future.
      
      Also simplify the code to only check for exactly '---help---'. Since
      commit c2264564 ("kconfig: warn of unhandled characters in Kconfig
      commands"), '---help---' is a proper keyword and can only appear in that
      form. Prior to that commit, '---help---' working was more of a syntactic
      quirk.
      Signed-off-by: NUlf Magnusson <ulfalizer@gmail.com>
      Signed-off-by: NMasahiro Yamada <yamada.masahiro@socionext.com>
      84af7a61
    • U
      checkpatch: kconfig: check help texts for menuconfig and choice · 678ae162
      Ulf Magnusson 提交于
      Currently, only Kconfig symbols are checked for a missing or short help
      text, and are only checked if they are defined with the 'config'
      keyword.
      
      To make the check more general, extend it to also check help texts for
      choices and for symbols defined with the 'menuconfig' keyword.
      
      This increases the accuracy of the check for symbols that would already
      have been checked as well, since e.g. a 'menuconfig' symbol after a help
      text will be recognized as ending the preceding symbol/choice
      definition.
      
      To increase the accuracy of the check further, also recognize 'if',
      'endif', 'menu', 'endmenu', 'endchoice', and 'source' as ending a
      symbol/choice definition.
      Signed-off-by: NUlf Magnusson <ulfalizer@gmail.com>
      Signed-off-by: NMasahiro Yamada <yamada.masahiro@socionext.com>
      678ae162