sound: annotate ->poll() instances
authorAl Viro <viro@zeniv.linux.org.uk>
Mon, 3 Jul 2017 03:27:36 +0000 (23:27 -0400)
committerAl Viro <viro@zeniv.linux.org.uk>
Mon, 27 Nov 2017 21:20:02 +0000 (16:20 -0500)
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
25 files changed:
sound/core/compress_offload.c
sound/core/control.c
sound/core/hwdep.c
sound/core/info.c
sound/core/init.c
sound/core/oss/pcm_oss.c
sound/core/pcm_native.c
sound/core/rawmidi.c
sound/core/seq/oss/seq_oss.c
sound/core/seq/oss/seq_oss_device.h
sound/core/seq/oss/seq_oss_rw.c
sound/core/seq/seq_clientmgr.c
sound/core/timer.c
sound/firewire/bebob/bebob_hwdep.c
sound/firewire/dice/dice-hwdep.c
sound/firewire/digi00x/digi00x-hwdep.c
sound/firewire/fireface/ff-hwdep.c
sound/firewire/fireworks/fireworks_hwdep.c
sound/firewire/motu/motu-hwdep.c
sound/firewire/oxfw/oxfw-hwdep.c
sound/firewire/tascam/tascam-hwdep.c
sound/oss/dmasound/dmasound_core.c
sound/usb/mixer_quirks.c
sound/usb/usx2y/us122l.c
sound/usb/usx2y/usX2Yhwdep.c

index 4490a699030b10725015e323a18a09286ea02db0..a12b9555e9107fb601b3227956174bd19309a547 100644 (file)
@@ -396,7 +396,7 @@ static int snd_compr_mmap(struct file *f, struct vm_area_struct *vma)
        return -ENXIO;
 }
 
-static inline int snd_compr_get_poll(struct snd_compr_stream *stream)
+static __poll_t snd_compr_get_poll(struct snd_compr_stream *stream)
 {
        if (stream->direction == SND_COMPRESS_PLAYBACK)
                return POLLOUT | POLLWRNORM;
@@ -404,12 +404,12 @@ static inline int snd_compr_get_poll(struct snd_compr_stream *stream)
                return POLLIN | POLLRDNORM;
 }
 
-static unsigned int snd_compr_poll(struct file *f, poll_table *wait)
+static __poll_t snd_compr_poll(struct file *f, poll_table *wait)
 {
        struct snd_compr_file *data = f->private_data;
        struct snd_compr_stream *stream;
        size_t avail;
-       int retval = 0;
+       __poll_t retval = 0;
 
        if (snd_BUG_ON(!data))
                return POLLERR;
index 56b3e2d49c82321509e699217ee1085382c40ce4..494389fb966ca6a7daf0971b709c21ada354bc45 100644 (file)
@@ -1666,9 +1666,9 @@ static ssize_t snd_ctl_read(struct file *file, char __user *buffer,
        return result > 0 ? result : err;
 }
 
-static unsigned int snd_ctl_poll(struct file *file, poll_table * wait)
+static __poll_t snd_ctl_poll(struct file *file, poll_table * wait)
 {
-       unsigned int mask;
+       __poll_t mask;
        struct snd_ctl_file *ctl;
 
        ctl = file->private_data;
index 8faae3d1455df18c330f8e59785722dc0aecaa80..cbda5c8b675fe14ecbd276496aeab72b0991a726 100644 (file)
@@ -177,7 +177,7 @@ static int snd_hwdep_release(struct inode *inode, struct file * file)
        return err;
 }
 
-static unsigned int snd_hwdep_poll(struct file * file, poll_table * wait)
+static __poll_t snd_hwdep_poll(struct file * file, poll_table * wait)
 {
        struct snd_hwdep *hw = file->private_data;
        if (hw->ops.poll)
index bcf6a48cc70d3b82d78b1b7a944e1bd4e0b1dd5d..aa86f3f8e056506f0a5e1ba1fd2764481ce4b4cc 100644 (file)
@@ -203,11 +203,11 @@ static ssize_t snd_info_entry_write(struct file *file, const char __user *buffer
        return size;
 }
 
-static unsigned int snd_info_entry_poll(struct file *file, poll_table *wait)
+static __poll_t snd_info_entry_poll(struct file *file, poll_table *wait)
 {
        struct snd_info_private_data *data = file->private_data;
        struct snd_info_entry *entry = data->entry;
-       unsigned int mask = 0;
+       __poll_t mask = 0;
 
        if (entry->c.ops->poll)
                return entry->c.ops->poll(entry,
index 168ae03d3a1c719c0cbe511c174de1a0f10fecce..8753440c3a6eaed76736e920ccbc66dea45f7d6a 100644 (file)
@@ -344,7 +344,7 @@ static int snd_disconnect_release(struct inode *inode, struct file *file)
        panic("%s(%p, %p) failed!", __func__, inode, file);
 }
 
-static unsigned int snd_disconnect_poll(struct file * file, poll_table * wait)
+static __poll_t snd_disconnect_poll(struct file * file, poll_table * wait)
 {
        return POLLERR | POLLNVAL;
 }
index e49f448ee04f4af00a7c7c00755f8a29b226bb6f..caa4d0c949bf83284842e12f42bc4295ba6141b8 100644 (file)
@@ -2673,10 +2673,10 @@ static int snd_pcm_oss_capture_ready(struct snd_pcm_substream *substream)
                                                runtime->oss.period_frames;
 }
 
-static unsigned int snd_pcm_oss_poll(struct file *file, poll_table * wait)
+static __poll_t snd_pcm_oss_poll(struct file *file, poll_table * wait)
 {
        struct snd_pcm_oss_file *pcm_oss_file;
-       unsigned int mask;
+       __poll_t mask;
        struct snd_pcm_substream *psubstream = NULL, *csubstream = NULL;
        
        pcm_oss_file = file->private_data;
index a4d92e46c459b014287b729f9fe6b9d9e5c19ebf..6077dd6a0901d0ae54d65bff6f96a903964b1e06 100644 (file)
@@ -3130,12 +3130,12 @@ static ssize_t snd_pcm_writev(struct kiocb *iocb, struct iov_iter *from)
        return result;
 }
 
-static unsigned int snd_pcm_playback_poll(struct file *file, poll_table * wait)
+static __poll_t snd_pcm_playback_poll(struct file *file, poll_table * wait)
 {
        struct snd_pcm_file *pcm_file;
        struct snd_pcm_substream *substream;
        struct snd_pcm_runtime *runtime;
-        unsigned int mask;
+        __poll_t mask;
        snd_pcm_uframes_t avail;
 
        pcm_file = file->private_data;
@@ -3169,12 +3169,12 @@ static unsigned int snd_pcm_playback_poll(struct file *file, poll_table * wait)
        return mask;
 }
 
-static unsigned int snd_pcm_capture_poll(struct file *file, poll_table * wait)
+static __poll_t snd_pcm_capture_poll(struct file *file, poll_table * wait)
 {
        struct snd_pcm_file *pcm_file;
        struct snd_pcm_substream *substream;
        struct snd_pcm_runtime *runtime;
-        unsigned int mask;
+        __poll_t mask;
        snd_pcm_uframes_t avail;
 
        pcm_file = file->private_data;
index b3b353d7252724e10f23a9288cd24aab3ef34007..e7e4930732a3ecaf68adec5784f9ba1b3c9f3e4a 100644 (file)
@@ -1357,11 +1357,11 @@ static ssize_t snd_rawmidi_write(struct file *file, const char __user *buf,
        return result;
 }
 
-static unsigned int snd_rawmidi_poll(struct file *file, poll_table * wait)
+static __poll_t snd_rawmidi_poll(struct file *file, poll_table * wait)
 {
        struct snd_rawmidi_file *rfile;
        struct snd_rawmidi_runtime *runtime;
-       unsigned int mask;
+       __poll_t mask;
 
        rfile = file->private_data;
        if (rfile->input != NULL) {
index 8cdf489df80e03ee2cd5652aec627ffa73e9fcc3..5f64d0d88320012fc91d6752c4388434045fbe38 100644 (file)
@@ -59,7 +59,7 @@ static int odev_release(struct inode *inode, struct file *file);
 static ssize_t odev_read(struct file *file, char __user *buf, size_t count, loff_t *offset);
 static ssize_t odev_write(struct file *file, const char __user *buf, size_t count, loff_t *offset);
 static long odev_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
-static unsigned int odev_poll(struct file *file, poll_table * wait);
+static __poll_t odev_poll(struct file *file, poll_table * wait);
 
 
 /*
@@ -197,7 +197,7 @@ static long odev_ioctl_compat(struct file *file, unsigned int cmd,
 #define odev_ioctl_compat      NULL
 #endif
 
-static unsigned int
+static __poll_t
 odev_poll(struct file *file, poll_table * wait)
 {
        struct seq_oss_devinfo *dp;
index afa007c0cc2d45f537938e20dbd78be93364e026..2d0e9eaf13aa8c0cd64baef0ed5fe4119e942123 100644 (file)
@@ -124,7 +124,7 @@ void snd_seq_oss_release(struct seq_oss_devinfo *dp);
 int snd_seq_oss_ioctl(struct seq_oss_devinfo *dp, unsigned int cmd, unsigned long arg);
 int snd_seq_oss_read(struct seq_oss_devinfo *dev, char __user *buf, int count);
 int snd_seq_oss_write(struct seq_oss_devinfo *dp, const char __user *buf, int count, struct file *opt);
-unsigned int snd_seq_oss_poll(struct seq_oss_devinfo *dp, struct file *file, poll_table * wait);
+__poll_t snd_seq_oss_poll(struct seq_oss_devinfo *dp, struct file *file, poll_table * wait);
 
 void snd_seq_oss_reset(struct seq_oss_devinfo *dp);
 
index 6a7b6aceeca948fae582ecf08bd92033261225ef..c538e78ca3102eca37ba970eae465e00e24ddf32 100644 (file)
@@ -196,10 +196,10 @@ insert_queue(struct seq_oss_devinfo *dp, union evrec *rec, struct file *opt)
  * select / poll
  */
   
-unsigned int
+__poll_t
 snd_seq_oss_poll(struct seq_oss_devinfo *dp, struct file *file, poll_table * wait)
 {
-       unsigned int mask = 0;
+       __poll_t mask = 0;
 
        /* input */
        if (dp->readq && is_read_mode(dp->file_mode)) {
index 6e22eea72654e6ce2208500fa7329fc1c2aedf35..6d57912a8988eaa790d74b8e1197e3736d28da73 100644 (file)
@@ -1086,10 +1086,10 @@ static ssize_t snd_seq_write(struct file *file, const char __user *buf,
 /*
  * handle polling
  */
-static unsigned int snd_seq_poll(struct file *file, poll_table * wait)
+static __poll_t snd_seq_poll(struct file *file, poll_table * wait)
 {
        struct snd_seq_client *client = file->private_data;
-       unsigned int mask = 0;
+       __poll_t mask = 0;
 
        /* check client structures are in place */
        if (snd_BUG_ON(!client))
index ee09dace8bb1eefdec0c8bcc398b0c521fc536ac..da05e314917f92ee272b3c53682492ca1b9ca04c 100644 (file)
@@ -2072,9 +2072,9 @@ static ssize_t snd_timer_user_read(struct file *file, char __user *buffer,
        return result > 0 ? result : err;
 }
 
-static unsigned int snd_timer_user_poll(struct file *file, poll_table * wait)
+static __poll_t snd_timer_user_poll(struct file *file, poll_table * wait)
 {
-        unsigned int mask;
+        __poll_t mask;
         struct snd_timer_user *tu;
 
         tu = file->private_data;
index 2b367c21b80c36e25ea105c8098ce0a9f38da496..83e791810c52ed69d37c67b5092e2652fed4d517 100644 (file)
@@ -53,11 +53,11 @@ hwdep_read(struct snd_hwdep *hwdep, char __user *buf,  long count,
        return count;
 }
 
-static unsigned int
+static __poll_t
 hwdep_poll(struct snd_hwdep *hwdep, struct file *file, poll_table *wait)
 {
        struct snd_bebob *bebob = hwdep->private_data;
-       unsigned int events;
+       __poll_t events;
 
        poll_wait(file, &bebob->hwdep_wait, wait);
 
index a4dc02a86f12eda01ddd05a34d884c76142d9dec..7a8af0f91c96eb4361f4a3a8db4bc9f3d1964ab0 100644 (file)
@@ -52,11 +52,11 @@ static long hwdep_read(struct snd_hwdep *hwdep, char __user *buf,
        return count;
 }
 
-static unsigned int hwdep_poll(struct snd_hwdep *hwdep, struct file *file,
+static __poll_t hwdep_poll(struct snd_hwdep *hwdep, struct file *file,
                               poll_table *wait)
 {
        struct snd_dice *dice = hwdep->private_data;
-       unsigned int events;
+       __poll_t events;
 
        poll_wait(file, &dice->hwdep_wait, wait);
 
index 463c6b8e864d025bae08b931705c0fae2d71d952..a084c2a834db9284ba6b3d4d10475e2dc15b860a 100644 (file)
@@ -60,11 +60,11 @@ static long hwdep_read(struct snd_hwdep *hwdep, char __user *buf,  long count,
        return count;
 }
 
-static unsigned int hwdep_poll(struct snd_hwdep *hwdep, struct file *file,
+static __poll_t hwdep_poll(struct snd_hwdep *hwdep, struct file *file,
                               poll_table *wait)
 {
        struct snd_dg00x *dg00x = hwdep->private_data;
-       unsigned int events;
+       __poll_t events;
 
        poll_wait(file, &dg00x->hwdep_wait, wait);
 
index 3ee04b05458507f9fea3393dd20c2b85e37879d5..68e273fa5d233f164763bc9ef22933f3803787c1 100644 (file)
@@ -52,11 +52,11 @@ static long hwdep_read(struct snd_hwdep *hwdep, char __user *buf,  long count,
        return count;
 }
 
-static unsigned int hwdep_poll(struct snd_hwdep *hwdep, struct file *file,
+static __poll_t hwdep_poll(struct snd_hwdep *hwdep, struct file *file,
                               poll_table *wait)
 {
        struct snd_ff *ff = hwdep->private_data;
-       unsigned int events;
+       __poll_t events;
 
        poll_wait(file, &ff->hwdep_wait, wait);
 
index a3a3a16f5e08fccf9fd3b196c5d2a7cd33474756..e0eff9328ee10040f337df7aeddee64784822e0d 100644 (file)
@@ -184,11 +184,11 @@ end:
        return count;
 }
 
-static unsigned int
+static __poll_t
 hwdep_poll(struct snd_hwdep *hwdep, struct file *file, poll_table *wait)
 {
        struct snd_efw *efw = hwdep->private_data;
-       unsigned int events;
+       __poll_t events;
 
        poll_wait(file, &efw->hwdep_wait, wait);
 
index b87ccb69d597978c75f89157defb8406f3c681b3..7b6a086866e7a26fe06732e70aa8f14e529b3ce2 100644 (file)
@@ -59,11 +59,11 @@ static long hwdep_read(struct snd_hwdep *hwdep, char __user *buf, long count,
        return count;
 }
 
-static unsigned int hwdep_poll(struct snd_hwdep *hwdep, struct file *file,
+static __poll_t hwdep_poll(struct snd_hwdep *hwdep, struct file *file,
                               poll_table *wait)
 {
        struct snd_motu *motu = hwdep->private_data;
-       unsigned int events;
+       __poll_t events;
 
        poll_wait(file, &motu->hwdep_wait, wait);
 
index ff2687ad046033f68a437fb04dffd61d6cf65274..6c1828aff672ded8ba21072e0587cd5768ed0df3 100644 (file)
@@ -52,11 +52,11 @@ static long hwdep_read(struct snd_hwdep *hwdep, char __user *buf,  long count,
        return count;
 }
 
-static unsigned int hwdep_poll(struct snd_hwdep *hwdep, struct file *file,
+static __poll_t hwdep_poll(struct snd_hwdep *hwdep, struct file *file,
                               poll_table *wait)
 {
        struct snd_oxfw *oxfw = hwdep->private_data;
-       unsigned int events;
+       __poll_t events;
 
        poll_wait(file, &oxfw->hwdep_wait, wait);
 
index 8c4437d0051d2ae3a17a0ff00ee64fcd431235a7..37b21647b471661f5fd1c87a21354bd428209b2c 100644 (file)
@@ -50,11 +50,11 @@ static long hwdep_read(struct snd_hwdep *hwdep, char __user *buf, long count,
        return count;
 }
 
-static unsigned int hwdep_poll(struct snd_hwdep *hwdep, struct file *file,
+static __poll_t hwdep_poll(struct snd_hwdep *hwdep, struct file *file,
                               poll_table *wait)
 {
        struct snd_tscm *tscm = hwdep->private_data;
-       unsigned int events;
+       __poll_t events;
 
        poll_wait(file, &tscm->hwdep_wait, wait);
 
index fb3bbceb1fefdc81083bcaafe7a0614a060c3aaf..6b57f8aac1b700c621768dbf202b9d8b786fdc9f 100644 (file)
@@ -670,9 +670,9 @@ static ssize_t sq_write(struct file *file, const char __user *src, size_t uLeft,
        return uUsed < 0? uUsed: uWritten;
 }
 
-static unsigned int sq_poll(struct file *file, struct poll_table_struct *wait)
+static __poll_t sq_poll(struct file *file, struct poll_table_struct *wait)
 {
-       unsigned int mask = 0;
+       __poll_t mask = 0;
        int retVal;
        
        if (write_sq.locked == 0) {
index e1e7ce9ab217f6f716fc95da5d1544279c0d1b75..bc93242eef8a2609ec452057f8cdbd816eb52383 100644 (file)
@@ -239,7 +239,7 @@ static long snd_usb_sbrc_hwdep_read(struct snd_hwdep *hw, char __user *buf,
        return err < 0 ? err : count;
 }
 
-static unsigned int snd_usb_sbrc_hwdep_poll(struct snd_hwdep *hw, struct file *file,
+static __poll_t snd_usb_sbrc_hwdep_poll(struct snd_hwdep *hw, struct file *file,
                                            poll_table *wait)
 {
        struct usb_mixer_interface *mixer = hw->private_data;
index 159da1f3924e984ccacdb6dcb349adc6080bb9b5..509680d9b698605886ffd217dd2d9c41f64ded32 100644 (file)
@@ -271,12 +271,12 @@ out:
        return err;
 }
 
-static unsigned int usb_stream_hwdep_poll(struct snd_hwdep *hw,
+static __poll_t usb_stream_hwdep_poll(struct snd_hwdep *hw,
                                          struct file *file, poll_table *wait)
 {
        struct us122l   *us122l = hw->private_data;
        unsigned        *polled;
-       unsigned int    mask;
+       __poll_t        mask;
 
        poll_wait(file, &us122l->sk.sleep, wait);
 
index f4b3cda412fcc6d887b997d9e4cf8795900daffd..8b0a1eae573c046029d58402dc4470543b67199c 100644 (file)
@@ -86,9 +86,9 @@ static int snd_us428ctls_mmap(struct snd_hwdep * hw, struct file *filp, struct v
        return 0;
 }
 
-static unsigned int snd_us428ctls_poll(struct snd_hwdep *hw, struct file *file, poll_table *wait)
+static __poll_t snd_us428ctls_poll(struct snd_hwdep *hw, struct file *file, poll_table *wait)
 {
-       unsigned int    mask = 0;
+       __poll_t        mask = 0;
        struct usX2Ydev *us428 = hw->private_data;
        struct us428ctls_sharedmem *shm = us428->us428ctls_sharedmem;
        if (us428->chip_status & USX2Y_STAT_CHIP_HUP)