diff options
| author | Ivan Kokshaysky <ink@jurassic.park.msu.ru> | 2005-10-29 18:15:43 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-10-29 21:40:35 -0700 |
| commit | 63f324cf0792ed69089b79d6921ba3aaea97af50 (patch) | |
| tree | 007ec8ea5c2344ced61de396c2484a5a49cc9aac /include/asm-alpha | |
| parent | [PATCH] TIMERS: add missing compensation for HZ == 250 (diff) | |
| download | linux-63f324cf0792ed69089b79d6921ba3aaea97af50.tar.gz linux-63f324cf0792ed69089b79d6921ba3aaea97af50.zip | |
[PATCH] fix alpha breakage
barrier.h uses barrier() in non-SMP case. And doesn't include compiler.h.
Cc: Al Viro <viro@ftp.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-alpha')
| -rw-r--r-- | include/asm-alpha/barrier.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/asm-alpha/barrier.h b/include/asm-alpha/barrier.h index 229c83fe77cb..681ff581afa5 100644 --- a/include/asm-alpha/barrier.h +++ b/include/asm-alpha/barrier.h @@ -1,6 +1,8 @@ #ifndef __BARRIER_H #define __BARRIER_H +#include <asm/compiler.h> + #define mb() \ __asm__ __volatile__("mb": : :"memory") |
