|
@@ -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;
|