2003-04-22 21:02:15 +02:00
|
|
|
#ifndef SMP_SPINLOCK_H
|
|
|
|
#define SMP_SPINLOCK_H
|
|
|
|
|
Clean up #ifs
Replace #if CONFIG_FOO==1 with #if CONFIG_FOO:
find src -name \*.[ch] -exec sed -i "s,#if[[:space:]]*\(CONFIG_[A-Z0-9_]*\)[[:space:]]*==[[:space:]]*1[[:space:]]*\$,#if \1," {} +
Replace #if (CONFIG_FOO==1) with #if CONFIG_FOO:
find src -name \*.[ch] -exec sed -i "s,#if[[:space:]]*(\(CONFIG_[A-Z0-9_]*\)[[:space:]]*==[[:space:]]*1)[[:space:]]*\$,#if \1," {} +
Replace #if CONFIG_FOO==0 with #if !CONFIG_FOO:
find src -name \*.[ch] -exec sed -i "s,#if[[:space:]]*\(CONFIG_[A-Z0-9_]*\)[[:space:]]*==[[:space:]]*0[[:space:]]*\$,#if \!\1," {} +
Replace #if (CONFIG_FOO==0) with #if !CONFIG_FOO:
find src -name \*.[ch] -exec sed -i "s,#if[[:space:]]*(\(CONFIG_[A-Z0-9_]*\)[[:space:]]*==[[:space:]]*0)[[:space:]]*\$,#if \!\1," {} +
(and some manual changes to fix false positives)
Change-Id: Iac6ca7605a5f99885258cf1a9a2473a92de27c42
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-on: http://review.coreboot.org/1004
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Reviewed-by: Martin Roth <martin@se-eng.com>
2012-05-05 15:29:32 +02:00
|
|
|
#if CONFIG_SMP
|
2003-04-22 21:02:15 +02:00
|
|
|
#include <arch/smp/spinlock.h>
|
2003-07-21 22:13:45 +02:00
|
|
|
#else /* !CONFIG_SMP */
|
2003-04-22 21:02:15 +02:00
|
|
|
|
2009-11-12 17:38:03 +01:00
|
|
|
#define DECLARE_SPIN_LOCK(x)
|
2003-04-22 21:02:15 +02:00
|
|
|
#define barrier() do {} while(0)
|
|
|
|
#define spin_is_locked(lock) 0
|
|
|
|
#define spin_unlock_wait(lock) do {} while(0)
|
|
|
|
#define spin_lock(lock) do {} while(0)
|
|
|
|
#define spin_unlock(lock) do {} while(0)
|
2005-10-25 23:28:41 +02:00
|
|
|
#define cpu_relax() do {} while(0)
|
2003-04-22 21:02:15 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* SMP_SPINLOCK_H */
|