An error occurred fetching the project authors.
  1. 30 Oct, 2017 1 commit
  2. 12 Oct, 2017 2 commits
  3. 04 Oct, 2017 1 commit
  4. 30 Sep, 2017 1 commit
  5. 18 Sep, 2017 1 commit
  6. 01 Sep, 2017 1 commit
  7. 17 Aug, 2017 1 commit
  8. 15 Aug, 2017 1 commit
  9. 11 Aug, 2017 1 commit
  10. 27 Jul, 2017 3 commits
  11. 18 Jul, 2017 1 commit
    • Krzysztof Kozlowski's avatar
      ARM: multi_v7_defconfig: Cleanup from non-existing options · 9164c754
      Krzysztof Kozlowski authored
      Remove options which do not exist anymore:
       - TEGRA_EMC_SCALING_ENABLE is gone since commit cab4d503 ("ARM:
         tegra: remove TEGRA_EMC_SCALING_ENABLE");
      
       - ARCH_VEXPRESS_CA9X4 is gone since commit 81cc3f86
         ("ARM: vexpress: Remove non-DT code");
      
       - OMAP_USB3 was replaced by TI_PIPE3 in commit a70143bb ("drivers:
         phy: usb3/pipe3: Adapt pipe3 driver to Generic PHY Framework");
      
       - MMC_DW_IDMAC is gone since commit 3fc7eaef ("mmc: dw_mmc: Add
         external dma interface support");
      
       - QCOM_SMD since commit 395a4805 ("soc: qcom: smd: Remove
         standalone driver");
      
       - COMMON_CLK_MAX77802 was merged into COMMON_CLK_MAX77686 in commit
         8ad313fe ("clk: max77686: Combine Maxim max77686 and max77802
         driver");
      
       - CRYPTO_DEV_TEGRA_AES is gone since commit 645af2e4 ("crypto:
         tegra - remove driver");
      Signed-off-by: default avatarKrzysztof Kozlowski <krzk@kernel.org>
      9164c754
  12. 01 Jul, 2017 1 commit
  13. 29 Jun, 2017 1 commit
  14. 01 Jun, 2017 1 commit
  15. 15 May, 2017 1 commit
  16. 19 Apr, 2017 1 commit
  17. 10 Apr, 2017 1 commit
    • Borislav Petkov's avatar
      EDAC: Remove EDAC_MM_EDAC · e3c4ff6d
      Borislav Petkov authored
      Move all the EDAC core functionality behind CONFIG_EDAC and get rid of
      that indirection. Update defconfigs which had it.
      
      While at it, fix dependencies such that EDAC depends on RAS for the
      tracepoints.
      Signed-off-by: default avatarBorislav Petkov <bp@suse.de>
      Cc: linux-arm-kernel@lists.infradead.org
      Cc: linuxppc-dev@lists.ozlabs.org
      Cc: Chris Metcalf <cmetcalf@mellanox.com>
      Cc: linux-edac@vger.kernel.org
      e3c4ff6d
  18. 31 Mar, 2017 1 commit
    • Arnd Bergmann's avatar
      multi_v7_defconfig: make Rockchip DRM drivers built-in · 4a85aae6
      Arnd Bergmann authored
      These cause warnings in linux-next, as the symbols have become 'bool' there:
      
      arch/arm/configs/multi_v7_defconfig:600:warning: symbol value 'm' invalid for ROCKCHIP_INNO_HDMI
      arch/arm/configs/multi_v7_defconfig:599:warning: symbol value 'm' invalid for ROCKCHIP_DW_MIPI_DSI
      arch/arm/configs/multi_v7_defconfig:598:warning: symbol value 'm' invalid for ROCKCHIP_DW_HDMI
      arch/arm/configs/multi_v7_defconfig:597:warning: symbol value 'm' invalid for ROCKCHIP_ANALOGIX_DP
      Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
      4a85aae6
  19. 17 Mar, 2017 1 commit
  20. 06 Mar, 2017 3 commits
  21. 18 Feb, 2017 1 commit
  22. 16 Feb, 2017 2 commits
  23. 08 Feb, 2017 1 commit
  24. 03 Feb, 2017 1 commit
  25. 16 Jan, 2017 1 commit
  26. 13 Jan, 2017 2 commits
  27. 10 Jan, 2017 2 commits
  28. 03 Jan, 2017 1 commit
  29. 30 Nov, 2016 1 commit
  30. 28 Nov, 2016 1 commit
  31. 21 Nov, 2016 1 commit
    • Linus Walleij's avatar
      mfd: qcom-pm8xxx: Clean up PM8XXX namespace · 40a3a0f2
      Linus Walleij authored
      The Kconfig and file naming for the PM8xxx driver is totally
      confusing:
      
      - Kconfig options MFD_PM8XXX and MFD_PM8921_CORE, some in-kernel
        users depending on or selecting either at random.
      - A driver file named pm8921-core.c even if it is indeed
        used by the whole PM8xxx family of chips.
      - An irqchip named pm8xxx since it was (I guess) realized that
        the driver was generic for all pm8xxx PMICs.
      
      As I may want to add support for PM8901 this is starting to get
      really messy. Fix this situation by:
      
      - Remove the MFD_PM8921_CORE symbol and rely solely on MFD_PM8XXX
        and convert all users, including LEDs Kconfig and ARM defconfigs
        for qcom and multi_v7 to use that single symbol.
      - Renaming the driver to qcom-pm8xxx.c to fit along the two
        other qcom* prefixed drivers.
      - Rename functions withing the driver from 8921 to 8xxx to
        indicate it is generic.
      - Just drop the =m config from the pxa_defconfig, I have no clue
        why it is even there, it is not a Qualcomm platform. (Possibly
        older Kconfig noise from saveconfig.)
      
      Cc: Stephen Boyd <sboyd@codeaurora.org>
      Cc: Neil Armstrong <narmstrong@baylibre.com>
      Cc: Abhijeet Dharmapurikar <adharmap@codeaurora.org>
      Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
      Reviewed-by: default avatarAndy Gross <andy.gross@linaro.org>
      Acked-by: default avatarBjorn Andersson <bjorn.andersson@linaro.org>
      Acked-by: default avatarJacek Anaszewski <j.anaszewski@samsung.com>
      Acked-by: default avatarArnd Bergmann <arnd@arndb.de>
      Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
      40a3a0f2
  32. 21 Oct, 2016 1 commit