Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.18 19 lines 422 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef _ASM_X86_VGTOD_H 3#define _ASM_X86_VGTOD_H 4 5/* 6 * This check is required to prevent ARCH=um to include 7 * unwanted headers. 8 */ 9#ifdef CONFIG_GENERIC_GETTIMEOFDAY 10#include <linux/compiler.h> 11#include <asm/clocksource.h> 12#include <vdso/datapage.h> 13#include <vdso/helpers.h> 14 15#include <uapi/linux/time.h> 16 17#endif /* CONFIG_GENERIC_GETTIMEOFDAY */ 18 19#endif /* _ASM_X86_VGTOD_H */