diff options
author | Will Deacon <will.deacon@arm.com> | 2013-03-08 15:43:37 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-03-08 18:05:34 -0500 |
commit | c3d6b628395fe6ec3442a83ddf02334c54867d43 (patch) | |
tree | e97868f4a90a0b2e7944c076078eae24cc69ff14 | |
parent | 15cf17d26e08ee95c2e392a3a71f55d32e99e971 (diff) |
alpha: boot: fix build breakage introduced by system.h disintegration
Commit ec2212088c42 ("Disintegrate asm/system.h for Alpha") removed the
system.h include from boot/head.S, which puts the PAL_* asm constants
out of scope.
Include <asm/pal.h> so we can get building again.
Signed-off-by: Will Deacon <will.deacon@arm.com>
Cc: David Rusling <david.rusling@linaro.org>
Cc: David Howells <dhowells@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | arch/alpha/boot/head.S | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/alpha/boot/head.S b/arch/alpha/boot/head.S index b06812bcac83..8efb26686d47 100644 --- a/arch/alpha/boot/head.S +++ b/arch/alpha/boot/head.S | |||
@@ -4,6 +4,7 @@ | |||
4 | * initial bootloader stuff.. | 4 | * initial bootloader stuff.. |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #include <asm/pal.h> | ||
7 | 8 | ||
8 | .set noreorder | 9 | .set noreorder |
9 | .globl __start | 10 | .globl __start |