1. 17 1月, 2006 14 次提交
  2. 16 1月, 2006 2 次提交
    • K
      [PATCH] Use atomic64_set for 64-bit case of atomic_long_set · 6b4977ce
      Kyle McMartin 提交于
      For some reason, the BITS_PER_LONG == 64 case of atomic_long_set
      was using atomic_set instead of atomic64_set. This does not jive
      with architectures which use an inline instead of a #define to
      implement their atomic_set() primitives.
      Signed-off-by: NKyle McMartin <kyle@parisc-linux.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      6b4977ce
    • R
      [ARM] Fix missing compiler.h include · ef0498a7
      Russell King 提交于
      asm/mach/arch.h introduced a __deprecated, but didn't include compiler.h,
      causing:
      
      In file included from arch/arm/mach-at91rm9200/devices.c:13:
      include/asm/mach/arch.h:23: warning: no semicolon at end of struct or union
      include/asm/mach/arch.h:23: error: syntax error before 'phys_ram'
      include/asm/mach/arch.h:34: error: syntax error before ':' token
      include/asm/mach/arch.h:35: error: syntax error before ':' token
      include/asm/mach/arch.h:36: error: syntax error before ':' token
      include/asm/mach/arch.h:37: error: syntax error before ':' token
      include/asm/mach/arch.h:45: error: syntax error before '}' token
      
      Add the necessary include.
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      ef0498a7
  3. 15 1月, 2006 24 次提交