root/arch/arm/vdso/vdso.S

/* [<][>][^][v][top][bottom][index][help] */
   1 /* SPDX-License-Identifier: GPL-2.0-only */
   2 /*
   3  * Adapted from arm64 version.
   4  *
   5  * Copyright (C) 2012 ARM Limited
   6  *
   7  * Author: Will Deacon <will.deacon@arm.com>
   8  */
   9 
  10 #include <linux/init.h>
  11 #include <linux/linkage.h>
  12 #include <linux/const.h>
  13 #include <asm/page.h>
  14 
  15         .globl vdso_start, vdso_end
  16         .section .data..ro_after_init
  17         .balign PAGE_SIZE
  18 vdso_start:
  19         .incbin "arch/arm/vdso/vdso.so"
  20         .balign PAGE_SIZE
  21 vdso_end:
  22 
  23         .previous

/* [<][>][^][v][top][bottom][index][help] */