Linux Audio

Check our new training course

Loading...
Note: File does not exist in v3.5.6.
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#ifndef __ASM_VDSO_VSYSCALL_H
 3#define __ASM_VDSO_VSYSCALL_H
 4
 5#ifndef __ASSEMBLY__
 6
 7#include <vdso/datapage.h>
 8
 9extern struct vdso_data *vdso_data;
10
11/*
12 * Update the vDSO data page to keep in sync with kernel timekeeping.
13 */
14static __always_inline
15struct vdso_data *__mips_get_k_vdso_data(void)
16{
17	return vdso_data;
18}
19#define __arch_get_k_vdso_data __mips_get_k_vdso_data
20
21/* The asm-generic header needs to be included after the definitions above */
22#include <asm-generic/vdso/vsyscall.h>
23
24#endif /* !__ASSEMBLY__ */
25
26#endif /* __ASM_VDSO_VSYSCALL_H */