From 3cfc22b8ff60c66be0e761d1de49d942647532db Mon Sep 17 00:00:00 2001 From: Volker Schlecht Date: Sun, 7 Jun 2026 13:08:42 +0000 Subject: [PATCH] use FreeBSD's input.h for NetBSD and OpenBSD as well Part-of: --- include/linux/input.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/input.h b/include/linux/input.h index 03c512ef..bdb87197 100644 --- a/include/linux/input.h +++ b/include/linux/input.h @@ -1,5 +1,5 @@ #ifdef __linux__ #include "linux/input.h" -#elif __FreeBSD__ +#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) #include "freebsd/input.h" #endif