blob: a63a68be1cce2258daf9cadf0d465b291296c930 (
plain) (
tree)
|
|
#ifdef __ASSEMBLY__
#include <asm/asm.h>
#ifdef CONFIG_SMP
.macro LOCK_PREFIX
1: lock
.section .smp_locks,"a"
.balign 4
.long 1b - .
.previous
.endm
#else
.macro LOCK_PREFIX
.endm
#endif
#endif /* __ASSEMBLY__ */
|