1. 01 7月, 2014 4 次提交
  2. 29 6月, 2014 6 次提交
  3. 26 6月, 2014 1 次提交
  4. 25 6月, 2014 4 次提交
  5. 24 6月, 2014 3 次提交
  6. 21 6月, 2014 7 次提交
  7. 20 6月, 2014 3 次提交
  8. 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
  9. 18 6月, 2014 3 次提交
  10. 17 6月, 2014 6 次提交