diff options
author | Takashi Iwai <tiwai@suse.de> | 2006-06-07 18:12:31 +0200 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-06-22 21:34:14 +0200 |
commit | 3758d4e601552a3d9066913a31ccb8dc6a25ee69 (patch) | |
tree | 715613a222b5d6abd47973a225191eecbcf11cc4 /sound | |
parent | 688956f23bdbfb1c3551bfafc819f989b36bb8ae (diff) | |
download | linux-3.10-3758d4e601552a3d9066913a31ccb8dc6a25ee69.tar.gz linux-3.10-3758d4e601552a3d9066913a31ccb8dc6a25ee69.tar.bz2 linux-3.10-3758d4e601552a3d9066913a31ccb8dc6a25ee69.zip |
[ALSA] Remove bogus check of mmap_count in snd_pcm_release()
Removed a bogus check of mmap_count in snd_pcm_release().
This is no longer true for the shared streams.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/core/pcm_native.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/core/pcm_native.c b/sound/core/pcm_native.c index 9e495244eee..439f047929e 100644 --- a/sound/core/pcm_native.c +++ b/sound/core/pcm_native.c @@ -2205,7 +2205,6 @@ static int snd_pcm_release(struct inode *inode, struct file *file) pcm_file = file->private_data; substream = pcm_file->substream; snd_assert(substream != NULL, return -ENXIO); - snd_assert(!atomic_read(&substream->mmap_count), ); pcm = substream->pcm; fasync_helper(-1, file, 0, &substream->runtime->fasync); mutex_lock(&pcm->open_mutex); |