summaryrefslogtreecommitdiff
path: root/linux/drivers/media
diff options
context:
space:
mode:
authorMichael Hunold <devnull@localhost>2003-10-14 12:41:22 +0000
committerMichael Hunold <devnull@localhost>2003-10-14 12:41:22 +0000
commitf1df770e561227ea59ede871c9452f13c2e3a1a0 (patch)
tree3d47702040be24c6d9388ebeeae0af2c751b0ffb /linux/drivers/media
parentec6beccf0b090e484de9b056da423de36d12a785 (diff)
downloadmediapointer-dvb-s2-f1df770e561227ea59ede871c9452f13c2e3a1a0.tar.gz
mediapointer-dvb-s2-f1df770e561227ea59ede871c9452f13c2e3a1a0.tar.bz2
Make cleanup handler interruptible.
Diffstat (limited to 'linux/drivers/media')
-rw-r--r--linux/drivers/media/common/saa7146_fops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/common/saa7146_fops.c b/linux/drivers/media/common/saa7146_fops.c
index d5f02eca5..4bcb34f8d 100644
--- a/linux/drivers/media/common/saa7146_fops.c
+++ b/linux/drivers/media/common/saa7146_fops.c
@@ -12,7 +12,7 @@ void saa7146_dma_free(struct saa7146_dev *dev,struct saa7146_buf *buf)
if (in_interrupt())
BUG();
- videobuf_waiton(&buf->vb,0,0);
+ videobuf_waiton(&buf->vb,0,1);
videobuf_dma_pci_unmap(dev->pci, &buf->vb.dma);
videobuf_dma_free(&buf->vb.dma);
buf->vb.state = STATE_NEEDS_INIT;