diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2012-07-24 16:32:39 +0200 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2012-07-26 10:07:25 +0200 |
commit | 56280b1bf68764c67d99887d5834788246d5896e (patch) | |
tree | 94bb24960ad7b9d3df6ab45adab5ad5868ebbe31 /arch/s390 | |
parent | 3193a98dc8777815803738fdae654c6ba0feee76 (diff) | |
download | linux-56280b1bf68764c67d99887d5834788246d5896e.tar.bz2 |
s390/linker script: use RO_DATA_SECTION
Use RO_DATA_SECTION instead of RODATA like several other archs do already.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390')
-rw-r--r-- | arch/s390/kernel/vmlinux.lds.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/kernel/vmlinux.lds.S b/arch/s390/kernel/vmlinux.lds.S index 21109c63eb12..de8fa9bbd35e 100644 --- a/arch/s390/kernel/vmlinux.lds.S +++ b/arch/s390/kernel/vmlinux.lds.S @@ -45,7 +45,7 @@ SECTIONS .dummy : { *(.dummy) } :data - RODATA + RO_DATA_SECTION(PAGE_SIZE) #ifdef CONFIG_SHARED_KERNEL . = ALIGN(0x100000); /* VM shared segments are 1MB aligned */ |