1. 16 6月, 2021 1 次提交
  2. 10 6月, 2021 1 次提交
  3. 02 6月, 2021 1 次提交
  4. 22 5月, 2021 1 次提交
  5. 06 4月, 2021 1 次提交
  6. 27 1月, 2021 1 次提交
  7. 23 1月, 2021 2 次提交
  8. 25 7月, 2020 1 次提交
  9. 08 7月, 2020 1 次提交
  10. 14 6月, 2020 1 次提交
    • M
      treewide: replace '---help---' in Kconfig files with 'help' · a7f7f624
      Masahiro Yamada 提交于
      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: NMasahiro Yamada <masahiroy@kernel.org>
      a7f7f624
  11. 15 4月, 2020 1 次提交
  12. 27 3月, 2020 1 次提交
  13. 12 3月, 2020 13 次提交
  14. 25 2月, 2020 1 次提交
  15. 07 1月, 2020 1 次提交
    • H
      block: Allow t10-pi to be modular · a754bd5f
      Herbert Xu 提交于
      Currently t10-pi can only be built into the block layer which via
      crc-t10dif pulls in a whole chunk of the Crypto API.  In fact all
      users of t10-pi work as modules and there is no reason for it to
      always be built-in.
      
      This patch adds a new hidden option for t10-pi that is selected
      automatically based on BLK_DEV_INTEGRITY and whether the users
      of t10-pi are built-in or not.
      Signed-off-by: NHerbert Xu <herbert@gondor.apana.org.au>
      Signed-off-by: NJens Axboe <axboe@kernel.dk>
      a754bd5f
  16. 10 10月, 2019 1 次提交
  17. 23 7月, 2019 1 次提交
    • A
      scsi: fdomain: fix building pcmcia front-end · e70bdd81
      Arnd Bergmann 提交于
      We get a warning when CONFIG_SCSI_LOWLEVEL is disabled here:
      
      WARNING: unmet direct dependencies detected for SCSI_FDOMAIN
        Depends on [n]: SCSI_LOWLEVEL [=n] && SCSI [=y]
        Selected by [m]:
        - PCMCIA_FDOMAIN [=m] && SCSI_LOWLEVEL_PCMCIA [=y] && SCSI [=y] && PCMCIA [=y] && m && MODULES [=y]
      
      Move all of SCSI_LOWLEVEL_PCMCIA inside of the existing SCSI_LOWLEVEL
      section. Very few people use the PCMCIA support these days, and they likely
      don't mind having to turn on SCSI_LOWLEVEL as well. This way we avoid the
      link error and get a more sensible structure.
      
      Fixes: 7d47fa065e62 ("scsi: fdomain: Add PCMCIA support")
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Signed-off-by: NMartin K. Petersen <martin.petersen@oracle.com>
      e70bdd81
  18. 19 6月, 2019 4 次提交
  19. 15 6月, 2019 1 次提交
    • M
      docs: kbuild: convert docs to ReST and rename to *.rst · cd238eff
      Mauro Carvalho Chehab 提交于
      The kbuild documentation clearly shows that the documents
      there are written at different times: some use markdown,
      some use their own peculiar logic to split sections.
      
      Convert everything to ReST without affecting too much
      the author's style and avoiding adding uneeded markups.
      
      The conversion is actually:
        - add blank lines and identation in order to identify paragraphs;
        - fix tables markups;
        - add some lists markups;
        - mark literal blocks;
        - adjust title markups.
      
      At its new index.rst, let's add a :orphan: while this is not linked to
      the main index.rst file, in order to avoid build warnings.
      Signed-off-by: NMauro Carvalho Chehab <mchehab+samsung@kernel.org>
      Signed-off-by: NJonathan Corbet <corbet@lwn.net>
      cd238eff
  20. 21 5月, 2019 1 次提交
  21. 06 2月, 2019 1 次提交
  22. 22 1月, 2019 1 次提交
    • F
      scsi/atari_scsi: Don't select CONFIG_NVRAM · 83d2aed4
      Finn Thain 提交于
      On powerpc, setting CONFIG_NVRAM=n builds a kernel with no NVRAM support.
      Setting CONFIG_NVRAM=m enables the /dev/nvram misc device module without
      enabling NVRAM support in drivers. Setting CONFIG_NVRAM=y enables the
      misc device (built-in) and also enables NVRAM support in drivers.
      
      m68k shares the valkyriefb driver with powerpc, and since that driver uses
      NVRAM, it is affected by CONFIG_ATARI_SCSI, because of the use of
      "select NVRAM". We can avoid the "select" here, but drivers still have
      to interpret the CONFIG_NVRAM symbol consistently regardless of platform.
      
      In this patch and the subsequent fbdev driver patch, the convention is
      adopted across all relevant platforms whereby NVRAM functionality gets
      enabled in a given device driver when the nvram misc device is built-in
      or when both drivers are modules.
      Acked-by: NMichael Schmitz <schmitzmic@gmail.com>
      Signed-off-by: NFinn Thain <fthain@telegraphics.com.au>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      83d2aed4
  23. 12 1月, 2019 1 次提交
  24. 09 1月, 2019 1 次提交