1. 06 12月, 2021 1 次提交
  2. 28 9月, 2020 1 次提交
  3. 08 9月, 2020 1 次提交
  4. 07 9月, 2020 6 次提交
  5. 20 8月, 2020 2 次提交
  6. 24 7月, 2020 1 次提交
  7. 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
  8. 28 5月, 2020 3 次提交
  9. 06 5月, 2020 1 次提交
    • S
      mmc: meson-mx-sdio: Depend on OF_ADDRESS and not just OF · 3fd2fdb3
      Stephen Boyd 提交于
      Making COMMON_CLK a visible option causes the sparc allyesconfig to fail
      to build like so:
      
         sparc64-linux-ld: drivers/mmc/host/meson-mx-sdio.o: in function `meson_mx_mmc_remove':
         meson-mx-sdio.c:(.text+0x70): undefined reference to `of_platform_device_destroy'
         sparc64-linux-ld: drivers/mmc/host/meson-mx-sdio.o: in function `meson_mx_mmc_probe':
         meson-mx-sdio.c:(.text+0x9e4): undefined reference to `of_platform_device_create'
         sparc64-linux-ld: meson-mx-sdio.c:(.text+0xdd4): undefined reference to `of_platform_device_destroy'
      
      This is because the implementation of of_platform_device_destroy() is
      inside an #ifdef CONFIG_OF_ADDRESS section of drivers/of/platform.c.
      This driver already depends on OF being enabled, so let's tighten that
      constrain a little more so that it depends on OF_ADDRESS instead. This
      way we won't try to build this driver on platforms that don't have this
      function.
      Reported-by: Nkbuild test robot <lkp@intel.com>
      Cc: Neil Armstrong <narmstrong@baylibre.com>
      Cc: Ulf Hansson <ulf.hansson@linaro.org>
      Signed-off-by: NStephen Boyd <sboyd@kernel.org>
      Link: https://lkml.kernel.org/r/20200409064416.83340-7-sboyd@kernel.orgAcked-by: NUlf Hansson <ulf.hansson@linaro.org>
      Reviewed-by: NArnd Bergmann <arnd@arndb.de>
      3fd2fdb3
  10. 24 3月, 2020 2 次提交
  11. 24 1月, 2020 1 次提交
  12. 20 1月, 2020 3 次提交
  13. 20 11月, 2019 2 次提交
  14. 13 11月, 2019 2 次提交
  15. 28 9月, 2019 1 次提交
  16. 11 9月, 2019 2 次提交
    • A
      mmc: sdhci-of-aspeed: Depend on CONFIG_OF_ADDRESS · 72976643
      Andrew Jeffery 提交于
      Resolves the following build error reported by the 0-day bot:
      
          ERROR: "of_platform_device_create" [drivers/mmc/host/sdhci-of-aspeed.ko] undefined!
      
      SPARC does not set CONFIG_OF_ADDRESS so the symbol is missing. Depend on
      CONFIG_OF_ADDRESS to ensure the driver is only built for supported
      configurations.
      
      Fixes: 2d28dbe042f4 ("mmc: sdhci-of-aspeed: Add support for the ASPEED SD controller")
      Reported-by: Nkbuild test robot <lkp@intel.com>
      Signed-off-by: NAndrew Jeffery <andrew@aj.id.au>
      Signed-off-by: NUlf Hansson <ulf.hansson@linaro.org>
      72976643
    • A
      mmc: sdhci-of-aspeed: Add support for the ASPEED SD controller · bb7b8ec6
      Andrew Jeffery 提交于
      Add a minimal driver for ASPEED's SD controller, which exposes two
      SDHCIs.
      
      The ASPEED design implements a common register set for the SDHCIs, and
      moves some of the standard configuration elements out to this common
      area (e.g. 8-bit mode, and card detect configuration which is not
      currently supported).
      
      The SD controller has a dedicated hardware interrupt that is shared
      between the slots. The common register set exposes information on which
      slot triggered the interrupt; early revisions of the patch introduced an
      irqchip for the register, but reality is it doesn't behave as an
      irqchip, and the result fits awkwardly into the irqchip APIs. Instead
      I've taken the simple approach of using the IRQ as a shared IRQ with
      some minor performance impact for the second slot.
      
      Ryan was the original author of the patch - I've taken his work and
      massaged it to drop the irqchip support and rework the devicetree
      integration. The driver has been smoke tested under qemu against a
      minimal SD controller model and lightly tested on an ast2500-evb.
      Signed-off-by: NRyan Chen <ryanchen.aspeed@gmail.com>
      Signed-off-by: NAndrew Jeffery <andrew@aj.id.au>
      Acked-by: NAdrian Hunter <adrian.hunter@intel.com>
      Reviewed-by: NJoel Stanley <joel@jms.id.au>
      Signed-off-by: NUlf Hansson <ulf.hansson@linaro.org>
      bb7b8ec6
  17. 10 7月, 2019 1 次提交
  18. 21 5月, 2019 1 次提交
  19. 06 5月, 2019 2 次提交
  20. 15 4月, 2019 2 次提交
  21. 25 2月, 2019 2 次提交
  22. 14 1月, 2019 2 次提交