1. 07 7月, 2014 10 次提交
  2. 29 6月, 2014 6 次提交
  3. 27 6月, 2014 2 次提交
    • L
      video: move Versatile CLCD helpers · 11c32d7b
      Linus Walleij 提交于
      This moves the Versatile-specific helper code and panel database
      down into the drivers/video folder next to the CLCD driver
      itself, preserving the config symbol but also moving the header
      to platform data.
      
      This is necessary to rid the Integrator of this final <plat/*>
      inclusion dependency and get us one less user of the
      plat-versatile folder.
      
      Cc: Arnd Bergmann <arnd@arndb.de>
      Cc: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
      Cc: linux-fbdev@vger.kernel.org
      Cc: Russell King <linux@arm.linux.org.uk>
      Acked-by: NTomi Valkeinen <tomi.valkeinen@ti.com>
      Signed-off-by: NLinus Walleij <linus.walleij@linaro.org>
      11c32d7b
    • L
      ARM: integrator: get rid of <mach/memory.h> · e6dc195c
      Linus Walleij 提交于
      The Integrator has a custom <mach/memory.h> header defining the
      BUS_OFFSET for *_to_bus and bus_to_* operations as offset from
      0x80000000.
      
      This switches the Integrator over to using the mechanism
      introduced for the Keystone to provide the same offset using
      the device tree, deletes <mach/memory.h> and augments the
      Integrator device tree to provide the bus offset.
      
      Cc: Grygorii Strashko <grygorii.strashko@ti.com>
      Cc: Will Deacon <will.deacon@arm.com>
      Cc: Jonathan Austin <jonathan.austin@arm.com>
      Cc: Russell King <linux@arm.linux.org.uk>
      Acked-by: NSantosh Shilimkar <santosh.shilimkar@ti.com>
      Signed-off-by: NLinus Walleij <linus.walleij@linaro.org>
      e6dc195c
  4. 26 6月, 2014 1 次提交
  5. 25 6月, 2014 4 次提交
  6. 24 6月, 2014 3 次提交
  7. 21 6月, 2014 7 次提交
  8. 20 6月, 2014 3 次提交
  9. 19 6月, 2014 3 次提交
    • R
      ARM: perf: fix compiler warning with gcc 4.6.4 (and tidy code) · 6a78371a
      Russell King 提交于
      GCC 4.6.4 spits out the following warning when building perf_event_v7.c:
      
      arch/arm/kernel/perf_event_v7.c: In function 'krait_pmu_get_event_idx':
      arch/arm/kernel/perf_event_v7.c:1927:6: warning: 'bit' may be used uninitialized in this function
      
      While upgrading the version of gcc may solve this, the code can also be
      organised to be more efficient by not carrying more local variables than
      is necessary across the armv7pmu_get_event_idx function call.  If we set
      'bit' to -1 (which is invalid for clear_bit) we can use that as an
      indication whether we need to clear a bit after this function.
      Acked-by: NWill Deacon <will.deacon@arm.com>
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      6a78371a
    • R
      ARM: l2c: fix dependencies on PL310 errata symbols · a641f3a6
      Russell King 提交于
      A number of configurations spit out warnings similar to:
      
      warning: (SOC_IMX6 && SOC_VF610 && ARCH_OMAP4) selects PL310_ERRATA_588369 which has unmet direct dependencies (CACHE_L2X0)
      warning: (SOC_IMX6 && SOC_VF610 && ARCH_OMAP4) selects PL310_ERRATA_727915 which has unmet direct dependencies (CACHE_L2X0)
      
      Clean up the dependencies here:
      * PL310 symbols should only be selected when CACHE_L2X0 is enabled.
      * Since the cache-l2x0 code detects PL310 presence at runtime, and we will
        eventually get rid of CACHE_PL310, surround these errata options with an
        if CACHE_L2X0 conditional rather than repeating the dependency against
        each.
      Acked-by: NArnd Bergmann <arnd@arndb.de>
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      a641f3a6
    • L
      ARM: stih41x: Rename stih416-b2020-revE.dts to stih416-b2020e.dts · 88a1c67f
      Lee Jones 提交于
      Two reasons for this rename.  Firstly, it removes the camel case
      convention which isn't used by any other platform and secondly it
      matches the naming convention for the internal kernel, which can
      become annoying when flipping between the two.
      Signed-off-by: NLee Jones <lee.jones@linaro.org>
      Signed-off-by: NMaxime Coquelin <maxime.coquelin@st.com>
      88a1c67f
  10. 18 6月, 2014 1 次提交