]> Git Repo - linux.git/blob - arch/arm64/kernel/vdso-wrap.S
kbuild: check static EXPORT_SYMBOL* by script instead of modpost
[linux.git] / arch / arm64 / kernel / vdso-wrap.S
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * Copyright (C) 2012 ARM Limited
4  *
5  * Author: Will Deacon <[email protected]>
6  */
7
8 #include <linux/init.h>
9 #include <linux/linkage.h>
10 #include <linux/const.h>
11 #include <asm/assembler.h>
12 #include <asm/page.h>
13
14         .globl vdso_start, vdso_end
15         .section .rodata
16         .balign PAGE_SIZE
17 vdso_start:
18         .incbin "arch/arm64/kernel/vdso/vdso.so"
19         .balign PAGE_SIZE
20 vdso_end:
21
22         .previous
23
24 emit_aarch64_feature_1_and
This page took 0.034528 seconds and 4 git commands to generate.