From: Vincenzo Frascino Date: Fri, 20 Mar 2020 14:53:40 +0000 (+0000) Subject: common: Introduce processor.h X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d8bb6993d871f5d3cd6d65d3772e4b1f4ef17380;p=linux.git common: Introduce processor.h The vDSO library should only include the necessary headers required for a userspace library (UAPI and a minimal set of kernel headers). To make this possible it is necessary to isolate from the kernel headers the common parts that are strictly necessary to build the library. Introduce processor.h to contain all the processor specific functions that are suitable for vDSO inclusion. Signed-off-by: Vincenzo Frascino Signed-off-by: Thomas Gleixner Link: https://lkml.kernel.org/r/20200320145351.32292-16-vincenzo.frascino@arm.com --- diff --git a/include/vdso/processor.h b/include/vdso/processor.h new file mode 100644 index 0000000000000..fbe8265ea3c49 --- /dev/null +++ b/include/vdso/processor.h @@ -0,0 +1,14 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ +/* + * Copyright (C) 2020 ARM Ltd. + */ +#ifndef __VDSO_PROCESSOR_H +#define __VDSO_PROCESSOR_H + +#ifndef __ASSEMBLY__ + +#include + +#endif /* __ASSEMBLY__ */ + +#endif /* __VDSO_PROCESSOR_H */