diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2017-07-02 23:27:36 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2017-11-27 16:20:02 -0500 |
commit | 680ef72abd84cbe0b722453d6be4e412305c9060 (patch) | |
tree | 46ea937c5ba186954e7c92a3a4ce7f3136e50482 /sound/firewire/motu | |
parent | 0d9b87f3ba71eef698ea69ef111b8ba35af8b318 (diff) |
sound: annotate ->poll() instances
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'sound/firewire/motu')
-rw-r--r-- | sound/firewire/motu/motu-hwdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/firewire/motu/motu-hwdep.c b/sound/firewire/motu/motu-hwdep.c index b87ccb69d597..7b6a086866e7 100644 --- a/sound/firewire/motu/motu-hwdep.c +++ b/sound/firewire/motu/motu-hwdep.c | |||
@@ -59,11 +59,11 @@ static long hwdep_read(struct snd_hwdep *hwdep, char __user *buf, long count, | |||
59 | return count; | 59 | return count; |
60 | } | 60 | } |
61 | 61 | ||
62 | static unsigned int hwdep_poll(struct snd_hwdep *hwdep, struct file *file, | 62 | static __poll_t hwdep_poll(struct snd_hwdep *hwdep, struct file *file, |
63 | poll_table *wait) | 63 | poll_table *wait) |
64 | { | 64 | { |
65 | struct snd_motu *motu = hwdep->private_data; | 65 | struct snd_motu *motu = hwdep->private_data; |
66 | unsigned int events; | 66 | __poll_t events; |
67 | 67 | ||
68 | poll_wait(file, &motu->hwdep_wait, wait); | 68 | poll_wait(file, &motu->hwdep_wait, wait); |
69 | 69 | ||