mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 10:33:27 +00:00
abe1ee3a22
This patch changes the remaining direct references to .data.page_aligned in C and assembly code to use the macros in include/linux/linkage.h. Signed-off-by: Tim Abbott <tabbott@ksplice.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Ingo Molnar <mingo@redhat.com> Cc: H. Peter Anvin <hpa@zytor.com> Cc: Haavard Skinnemoen <hskinnemoen@atmel.com> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Martin Schwidefsky <schwidefsky@de.ibm.com> Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
14 lines
250 B
ArmAsm
14 lines
250 B
ArmAsm
#include <linux/init.h>
|
|
#include <linux/linkage.h>
|
|
#include <asm/page.h>
|
|
|
|
__PAGE_ALIGNED_DATA
|
|
|
|
.globl vdso64_start, vdso64_end
|
|
.balign PAGE_SIZE
|
|
vdso64_start:
|
|
.incbin "arch/s390/kernel/vdso64/vdso64.so"
|
|
.balign PAGE_SIZE
|
|
vdso64_end:
|
|
|
|
.previous
|