diff options
author | Thomas Weißschuh <thomas.weissschuh@linutronix.de> | 2025-06-11 12:33:53 +0200 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2025-07-01 15:50:42 +0200 |
commit | 1c0fe1c7674121bcb233565bba08f7fcc2a8d5a8 (patch) | |
tree | 87c4a532d4f1a47a5cb2c1e64ec7aa8bc1dbf754 | |
parent | 82669e157bd8abeb08d19c6d597620585ece576a (diff) |
selftests: vDSO: vdso_test_getrandom: Drop unused include of linux/compiler.h
The header is unused. Furthermore this is not a real UAPI header,
but only exists in tools/include/.
This prevents building the selftest against real UAPI headers.
Drop the include.
Signed-off-by: Thomas Weißschuh <thomas.weissschuh@linutronix.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/all/20250611-selftests-vdso-fixes-v3-3-e62e37a6bcf5@linutronix.de
-rw-r--r-- | tools/testing/selftests/vDSO/vdso_test_getrandom.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/testing/selftests/vDSO/vdso_test_getrandom.c b/tools/testing/selftests/vDSO/vdso_test_getrandom.c index 95057f7567db..f36e50f372f9 100644 --- a/tools/testing/selftests/vDSO/vdso_test_getrandom.c +++ b/tools/testing/selftests/vDSO/vdso_test_getrandom.c @@ -21,7 +21,6 @@ #include <sys/wait.h> #include <sys/types.h> #include <linux/random.h> -#include <linux/compiler.h> #include <linux/ptrace.h> #include "../kselftest.h" |