Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * Adapted from arm64 version.
0004  *
0005  * Copyright (C) 2012 ARM Limited
0006  *
0007  * Author: Will Deacon <will.deacon@arm.com>
0008  */
0009 
0010 #include <linux/init.h>
0011 #include <linux/linkage.h>
0012 #include <linux/const.h>
0013 #include <asm/page.h>
0014 
0015     .globl vdso_start, vdso_end
0016     .section .data..ro_after_init
0017     .balign PAGE_SIZE
0018 vdso_start:
0019     .incbin "arch/arm/vdso/vdso.so"
0020     .balign PAGE_SIZE
0021 vdso_end:
0022 
0023     .previous