diff options
author | Richard Kuo <rkuo@codeaurora.org> | 2014-04-08 20:00:45 -0400 |
---|---|---|
committer | Richard Kuo <rkuo@codeaurora.org> | 2014-12-16 14:27:22 -0500 |
commit | f6b708c19d6f1791ccfbb20543c64466ef7a5f83 (patch) | |
tree | ebf1e12b9affcb15495853042245345bd7c75aa6 /arch/hexagon | |
parent | cb84c2b401d9cead5508cfed57b59b6d5feffdac (diff) |
Hexagon: fix alignment of init_task in RW_DATA_SECTION
Signed-off-by: Richard Kuo <rkuo@codeaurora.org>
Diffstat (limited to 'arch/hexagon')
-rw-r--r-- | arch/hexagon/kernel/vmlinux.lds.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/hexagon/kernel/vmlinux.lds.S b/arch/hexagon/kernel/vmlinux.lds.S index 44d8c47bae2f..5f268c1071b3 100644 --- a/arch/hexagon/kernel/vmlinux.lds.S +++ b/arch/hexagon/kernel/vmlinux.lds.S | |||
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | * Linker script for Hexagon kernel | 2 | * Linker script for Hexagon kernel |
3 | * | 3 | * |
4 | * Copyright (c) 2010-2013, The Linux Foundation. All rights reserved. | 4 | * Copyright (c) 2010-2014, The Linux Foundation. All rights reserved. |
5 | * | 5 | * |
6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
7 | * it under the terms of the GNU General Public License version 2 and | 7 | * it under the terms of the GNU General Public License version 2 and |
@@ -59,7 +59,7 @@ SECTIONS | |||
59 | INIT_DATA_SECTION(PAGE_SIZE) | 59 | INIT_DATA_SECTION(PAGE_SIZE) |
60 | 60 | ||
61 | _sdata = .; | 61 | _sdata = .; |
62 | RW_DATA_SECTION(32,PAGE_SIZE,PAGE_SIZE) | 62 | RW_DATA_SECTION(32,PAGE_SIZE,_THREAD_SIZE) |
63 | RO_DATA_SECTION(PAGE_SIZE) | 63 | RO_DATA_SECTION(PAGE_SIZE) |
64 | _edata = .; | 64 | _edata = .; |
65 | 65 | ||