diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2017-07-02 23:00:52 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2017-11-27 16:20:00 -0500 |
commit | b146e2ce804e76cffcfc17393ca7aa5e17e6037c (patch) | |
tree | 86c25ef1b271719c9a1afd74529d33b6dab139ed /arch/x86/kernel/apm_32.c | |
parent | 76d2d4a11b877e9f10f3d494180ec9a6f01f0857 (diff) | |
download | linux-b146e2ce804e76cffcfc17393ca7aa5e17e6037c.tar.bz2 |
x86: annotate ->poll() instances
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/x86/kernel/apm_32.c')
-rw-r--r-- | arch/x86/kernel/apm_32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/apm_32.c b/arch/x86/kernel/apm_32.c index e4b0d92b3ae0..ab1865342002 100644 --- a/arch/x86/kernel/apm_32.c +++ b/arch/x86/kernel/apm_32.c @@ -1506,7 +1506,7 @@ static ssize_t do_read(struct file *fp, char __user *buf, size_t count, loff_t * return 0; } -static unsigned int do_poll(struct file *fp, poll_table *wait) +static __poll_t do_poll(struct file *fp, poll_table *wait) { struct apm_user *as; |