From cfe39442ab8ce9670b4ddd04291b8cddb9cb1129 Mon Sep 17 00:00:00 2001 From: Al Viro Date: Thu, 1 Feb 2018 12:14:57 -0500 Subject: use linux/poll.h instead of asm/poll.h The only place that has any business including asm/poll.h is linux/poll.h. Fortunately, asm/poll.h had only been included in 3 places beyond that one, and all of them are trivial to switch to using linux/poll.h. Signed-off-by: Al Viro --- fs/coda/psdev.c | 2 +- fs/debugfs/file.c | 2 +- fs/fcntl.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/fs/coda/psdev.c b/fs/coda/psdev.c index 49d3c6fda89a..80b9b84391a9 100644 --- a/fs/coda/psdev.c +++ b/fs/coda/psdev.c @@ -39,7 +39,7 @@ #include #include #include -#include +#include #include #include diff --git a/fs/debugfs/file.c b/fs/debugfs/file.c index 6fdbf21be318..20bb73a931dd 100644 --- a/fs/debugfs/file.c +++ b/fs/debugfs/file.c @@ -18,7 +18,7 @@ #include #include #include -#include +#include #include "internal.h" diff --git a/fs/fcntl.c b/fs/fcntl.c index c7b9e0948107..ea3629c15c44 100644 --- a/fs/fcntl.c +++ b/fs/fcntl.c @@ -26,7 +26,7 @@ #include #include -#include +#include #include #include -- cgit