mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 06:44:00 -04:00
Since compat is gone there is only a 64 bit vdso left. Remove the superfluous "64" suffix everywhere. Reviewed-by: Jens Remus <jremus@linux.ibm.com> Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
16 lines
277 B
ArmAsm
16 lines
277 B
ArmAsm
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#include <linux/init.h>
|
|
#include <linux/linkage.h>
|
|
#include <asm/page.h>
|
|
|
|
__PAGE_ALIGNED_DATA
|
|
|
|
.globl vdso_start, vdso_end
|
|
.balign PAGE_SIZE
|
|
vdso_start:
|
|
.incbin "arch/s390/kernel/vdso/vdso.so"
|
|
.balign PAGE_SIZE
|
|
vdso_end:
|
|
|
|
.previous
|