summaryrefslogtreecommitdiffstats
path: root/fs/debugfs/file.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/debugfs/file.c')
-rw-r--r--fs/debugfs/file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/debugfs/file.c b/fs/debugfs/file.c
index cd12e6576b48..6fdbf21be318 100644
--- a/fs/debugfs/file.c
+++ b/fs/debugfs/file.c
@@ -206,11 +206,11 @@ FULL_PROXY_FUNC(unlocked_ioctl, long, filp,
206 PROTO(struct file *filp, unsigned int cmd, unsigned long arg), 206 PROTO(struct file *filp, unsigned int cmd, unsigned long arg),
207 ARGS(filp, cmd, arg)); 207 ARGS(filp, cmd, arg));
208 208
209static unsigned int full_proxy_poll(struct file *filp, 209static __poll_t full_proxy_poll(struct file *filp,
210 struct poll_table_struct *wait) 210 struct poll_table_struct *wait)
211{ 211{
212 struct dentry *dentry = F_DENTRY(filp); 212 struct dentry *dentry = F_DENTRY(filp);
213 unsigned int r = 0; 213 __poll_t r = 0;
214 const struct file_operations *real_fops; 214 const struct file_operations *real_fops;
215 215
216 if (debugfs_file_get(dentry)) 216 if (debugfs_file_get(dentry))