diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2018-02-01 12:14:57 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2018-02-01 16:23:11 -0500 |
commit | cfe39442ab8ce9670b4ddd04291b8cddb9cb1129 (patch) | |
tree | 5c7cedd887df8bbad840dca689e894af19faedd4 /fs/debugfs | |
parent | 0148a635ce40d65653bfda469fae8e4b8360baf3 (diff) | |
download | linux-cfe39442ab8ce9670b4ddd04291b8cddb9cb1129.tar.bz2 |
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 <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/debugfs')
-rw-r--r-- | fs/debugfs/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 <linux/slab.h> #include <linux/atomic.h> #include <linux/device.h> -#include <asm/poll.h> +#include <linux/poll.h> #include "internal.h" |