1. 14 Jul, 2016 2 commits
  2. 11 Jul, 2016 1 commit
    • Arnd Bergmann's avatar
      ARM: tegra: Remove board_init_funcs array · da35cbca
      Arnd Bergmann authored
      In a configuration that enables CONFIG_UBSAN_SANITIZE_ALL, I am getting
      a section mismatch warning for tegra20:
      
      WARNING: arch/arm/mach-tegra/built-in.o(.data+0x6e0): Section mismatch in reference from the variable board_init_funcs to the function .init.text:paz00_init()
      
      The array is no longer useful here since there is only one entry,
      so we can simply call the function directly after checking
      of_machine_is_compatible(). This fixes the section mismatch
      and is easier to read.
      Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
      Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
      da35cbca
  3. 07 Jul, 2016 1 commit
  4. 06 Jul, 2016 1 commit
    • Olof Johansson's avatar
      Merge tag 'imx-cleanup-4.8' of... · 8ec3dc29
      Olof Johansson authored
      Merge tag 'imx-cleanup-4.8' of git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux into next/cleanup
      
      The i.MX cleanup for 4.8:
       - A series from Arnd to clean up cpu_is_mx*() from i.MX platform
       - A series from Andrey to clean up i.MX L2-cache code by using
         core support as much as possible
       - Remove the orphan header eukrea-baseboards.h from i.MX platform
       - Remove boilerplate code from TZIC driver by using IRQCHIP_DECLARE
      
      * tag 'imx-cleanup-4.8' of git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux:
        ARM: imx: remove cpu_is_mx*()
        ARM: imx: remove last call to cpu_is_mx5*
        ARM: imx: rework mx27_pm_init() call
        ARM: imx: deconstruct mx3_idle
        ARM: imx: deconstruct mxc_rnga initialization
        ARM: imx: remove cpu_is_mx1 check
        ARM: i.MX: Do not explicitly call l2x0_of_init()
        ARM: i.MX: system.c: Tweak prefetch settings for performance
        ARM: i.MX: system.c: Replace magic numbers
        ARM: i.MX: system.c: Remove redundant errata 752271 code
        ARM: i.MX: system.c: Convert goto to if statement
        ARM: imx: Use IRQCHIP_DECLARE for TZIC
        ARM: imx: Remove orphan header
      Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
      8ec3dc29
  5. 05 Jul, 2016 1 commit
  6. 28 Jun, 2016 6 commits
  7. 21 Jun, 2016 6 commits
  8. 16 Jun, 2016 8 commits
  9. 13 Jun, 2016 6 commits
  10. 12 Jun, 2016 2 commits
  11. 10 Jun, 2016 4 commits
  12. 03 Jun, 2016 2 commits
    • Linus Walleij's avatar
      ARM: do away with ARCH_[WANT_OPTIONAL|REQUIRE]_GPIOLIB · 5c34a4e8
      Linus Walleij authored
      This replaces:
      
      - "select ARCH_REQUIRE_GPIOLIB" with "select GPIOLIB" as this can
        now be selected directly.
      
      - "select ARCH_WANT_OPTIONAL_GPIOLIB" with no dependency: GPIOLIB
        is now selectable by everyone, so we need not declare our
        intent to select it.
      
      When ordering the symbols the following rationale was used:
      if the selects were in alphabetical order, I moved select GPIOLIB
      to be in alphabetical order, but if the selects were not
      maintained in alphabetical order, I just replaced
      "select ARCH_REQUIRE_GPIOLIB" with "select GPIOLIB".
      
      Cc: Michael Büsch <m@bues.ch>
      Cc: arm@kernel.org
      Cc: linux-arm-kernel@lists.infradead.org
      Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
      Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
      5c34a4e8
    • Masahiro Yamada's avatar
      ARM: uniphier: drop code for old DT binding · 0c2b4504
      Masahiro Yamada authored
      Commit 307d40c5 ("ARM: uniphier: rework SMP code to support new
      System Bus binding") added a new DT binding for SMP code, but still
      kept old code for the backward compatibility.
      
      Linux 4.6 was out with both bindings supported, so it should not
      hurt to drop the old code now.  Moreover, the mainline code are
      currently not used for any of our products, so this change has
      no impact on our customers in any way.
      Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
      Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
      0c2b4504