diff options
author | Will Deacon <[email protected]> | 2013-03-08 12:43:37 -0800 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2013-03-08 15:05:34 -0800 |
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 <[email protected]>
Cc: David Rusling <[email protected]>
Cc: David Howells <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-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 @@ * initial bootloader stuff.. */ +#include <asm/pal.h> .set noreorder .globl __start |