1. 05 9月, 2014 1 次提交
  2. 14 7月, 2014 3 次提交
  3. 07 7月, 2014 3 次提交
  4. 17 6月, 2014 1 次提交
  5. 30 5月, 2014 3 次提交
  6. 22 5月, 2014 1 次提交
  7. 24 4月, 2014 1 次提交
  8. 19 4月, 2014 1 次提交
  9. 12 3月, 2014 2 次提交
  10. 10 3月, 2014 1 次提交
  11. 20 2月, 2014 3 次提交
  12. 21 12月, 2013 1 次提交
  13. 08 10月, 2013 1 次提交
  14. 26 8月, 2013 1 次提交
  15. 15 7月, 2013 1 次提交
    • P
      arm: delete __cpuinit/__CPUINIT usage from all ARM users · 8bd26e3a
      Paul Gortmaker 提交于
      The __cpuinit type of throwaway sections might have made sense
      some time ago when RAM was more constrained, but now the savings
      do not offset the cost and complications.  For example, the fix in
      commit 5e427ec2 ("x86: Fix bit corruption at CPU resume time")
      is a good example of the nasty type of bugs that can be created
      with improper use of the various __init prefixes.
      
      After a discussion on LKML[1] it was decided that cpuinit should go
      the way of devinit and be phased out.  Once all the users are gone,
      we can then finally remove the macros themselves from linux/init.h.
      
      Note that some harmless section mismatch warnings may result, since
      notify_cpu_starting() and cpu_up() are arch independent (kernel/cpu.c)
      and are flagged as __cpuinit  -- so if we remove the __cpuinit from
      the arch specific callers, we will also get section mismatch warnings.
      As an intermediate step, we intend to turn the linux/init.h cpuinit
      related content into no-ops as early as possible, since that will get
      rid of these warnings.  In any case, they are temporary and harmless.
      
      This removes all the ARM uses of the __cpuinit macros from C code,
      and all __CPUINIT from assembly code.  It also had two ".previous"
      section statements that were paired off against __CPUINIT
      (aka .section ".cpuinit.text") that also get removed here.
      
      [1] https://lkml.org/lkml/2013/5/20/589
      
      Cc: Russell King <linux@arm.linux.org.uk>
      Cc: Will Deacon <will.deacon@arm.com>
      Cc: linux-arm-kernel@lists.infradead.org
      Signed-off-by: NPaul Gortmaker <paul.gortmaker@windriver.com>
      8bd26e3a
  16. 10 7月, 2013 1 次提交
  17. 05 7月, 2013 1 次提交
  18. 25 6月, 2013 1 次提交
  19. 24 5月, 2013 1 次提交
  20. 03 5月, 2013 1 次提交
    • A
      ARM: SPEAr: conditionalize SMP code · a94d236d
      Arnd Bergmann 提交于
      Some constant definitions are only defined for spear13xx, so
      we must not attempt to build SPEAr SMP support when that
      SoC is not enabled.
      
      arch/arm/mach-spear/platsmp.c:25:35:
       error: 'VA_SCU_BASE' undeclared here (not in a function)
       arch/arm/mach-spear/platsmp.c: In function 'spear13xx_smp_prepare_cpus':
       arch/arm/mach-spear/platsmp.c:111:58: error: 'SYS_LOCATION' undeclared (first use in this function)
      
      Cc: Viresh Kumar <viresh.linux@gmail.com>
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      a94d236d
  21. 19 4月, 2013 1 次提交
  22. 10 4月, 2013 1 次提交
  23. 20 3月, 2013 1 次提交
    • A
      ARM: spear: build hotplug.o for armv7-a · cde35bd0
      Arnd Bergmann 提交于
      The hotplug.c file uses assembly instructions that are only available
      on ARMv7 but not on ARMv6. This is ok because we know that code will
      only run on arm ARMv7 SPEARr13xx, but it produces build errors when
      we also enable one of the ARMv6 targets in a multiplatform configuration.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      cde35bd0
  24. 13 3月, 2013 7 次提交