diff options
author | Michael Ellerman <michael@ellerman.id.au> | 2006-01-31 17:17:47 +1100 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-02-07 21:28:38 +1100 |
commit | 31a7f67e587aa0745a132ae68efa7f15dac677f9 (patch) | |
tree | 49300256994704784d10102efa51b0ccaa45ab23 /arch/powerpc/kernel | |
parent | a958a2648602aaa8f98aeb3c1c914f1b8096bfdc (diff) |
[PATCH] powerpc: Fix !SMP build of rtas.c
arch/powerpc/kernel/rtas.c is getting hvcall.h via spinlock.h, but when we're
building for UP we don't include spinlock.h.
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/kernel')
-rw-r--r-- | arch/powerpc/kernel/rtas.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/rtas.c b/arch/powerpc/kernel/rtas.c index 7fe4a5c944c9..b7092a47064b 100644 --- a/arch/powerpc/kernel/rtas.c +++ b/arch/powerpc/kernel/rtas.c @@ -22,6 +22,7 @@ #include <asm/prom.h> #include <asm/rtas.h> +#include <asm/hvcall.h> #include <asm/semaphore.h> #include <asm/machdep.h> #include <asm/page.h> |