[Intel-gfx] [PATCH i-g-t] lib/igt_kms.c: Unconditionally include poll.h
Petri Latvala
petri.latvala at intel.com
Tue Jan 9 10:11:24 UTC 2018
Commit 98c64b33a793 ("lib/igt_kms: Drop all stale events on first
commit.") added a use of poll() to igt_kms.c, but that file only
includes poll.h when HAVE_UDEV is defined. Move the include outside
the UDEV conditional.
Fixes: 98c64b33a793 ("lib/igt_kms: Drop all stale events on first commit.")
Signed-off-by: Petri Latvala <petri.latvala at intel.com>
Cc: Maarten Lankhorst <maarten.lankhorst at linux.intel.com>
Cc: Chris Wilson <chris at chris-wilson.co.uk>
---
lib/igt_kms.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index ec3b7167..069752ec 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -40,8 +40,8 @@
#endif
#ifdef HAVE_UDEV
#include <libudev.h>
-#include <poll.h>
#endif
+#include <poll.h>
#include <errno.h>
#include <time.h>
--
2.14.1
More information about the Intel-gfx
mailing list