diff options
author | Paul Mundt <lethal@linux-sh.org> | 2006-12-12 08:53:29 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2006-12-12 08:53:29 +0900 |
commit | e2dfb912d3cea97d8b1d6750abbe9c942b6f73f5 (patch) | |
tree | f52d562580fad884e636d5783ad988091f88c1c1 /arch/sh/boot/compressed/head.S | |
parent | f668f55c3941faacc6f298f434b1af3d5142eed7 (diff) | |
download | op-kernel-dev-e2dfb912d3cea97d8b1d6750abbe9c942b6f73f5.zip op-kernel-dev-e2dfb912d3cea97d8b1d6750abbe9c942b6f73f5.tar.gz |
sh: Fix .empty_zero_page alignment for PAGE_SIZE > 4096.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/boot/compressed/head.S')
-rw-r--r-- | arch/sh/boot/compressed/head.S | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/sh/boot/compressed/head.S b/arch/sh/boot/compressed/head.S index 4c26a19..a8399b0 100644 --- a/arch/sh/boot/compressed/head.S +++ b/arch/sh/boot/compressed/head.S @@ -8,6 +8,7 @@ .text #include <linux/linkage.h> +#include <asm/page.h> .global startup startup: @@ -97,7 +98,7 @@ init_stack_addr: decompress_kernel_addr: .long decompress_kernel kernel_start_addr: - .long _text+0x1000 + .long _text+PAGE_SIZE .align 9 fake_headers_as_bzImage: |