Skip to content
Snippets Groups Projects
Select Git revision
  • ba47d845d715a010f7b51f6f89bae32845e6acb7
  • master default protected
  • objtool-32bit
  • objtool
  • v5.9
  • v5.9-rc8
  • v5.9-rc7
  • v5.9-rc6
  • v5.9-rc5
  • v5.9-rc4
  • v5.9-rc3
  • v5.9-rc2
  • v5.9-rc1
  • v5.8
  • v5.8-rc7
  • v5.8-rc6
  • v5.8-rc5
  • v5.8-rc4
  • v5.8-rc3
  • v5.8-rc2
  • v5.8-rc1
  • v5.7
  • v5.7-rc7
  • v5.7-rc6
24 results

switchdev

  • Clone with SSH
  • Clone with HTTPS
  • Forked from Jonas Rabenstein / Linux
    Source project has a limited visibility.
    user avatar
    Masahiro Yamada authored
    Since commit 84af7a61 ("checkpatch: kconfig: prefer 'help' over
    '---help---'"), the number of '---help---' has been gradually
    decreasing, but there are still more than 2400 instances.
    
    This commit finishes the conversion. While I touched the lines,
    I also fixed the indentation.
    
    There are a variety of indentation styles found.
    
      a) 4 spaces + '---help---'
      b) 7 spaces + '---help---'
      c) 8 spaces + '---help---'
      d) 1 space + 1 tab + '---help---'
      e) 1 tab + '---help---'    (correct indentation)
      f) 1 tab + 1 space + '---help---'
      g) 1 tab + 2 spaces + '---help---'
    
    In order to convert all of them to 1 tab + 'help', I ran the
    following commend:
    
      $ find . -name 'Kconfig*' | xargs sed -i 's/^[[:space:]]*---help---/\thelp/'
    
    Signed-off-by: default avatarMasahiro Yamada <masahiroy@kernel.org>
    a7f7f624
    History
    Name Last commit Last update
    ..