diff options
Diffstat (limited to 'linux/drivers/media/common/saa7146_vbi.c')
-rw-r--r-- | linux/drivers/media/common/saa7146_vbi.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/linux/drivers/media/common/saa7146_vbi.c b/linux/drivers/media/common/saa7146_vbi.c index be318cfee..1b880ff9c 100644 --- a/linux/drivers/media/common/saa7146_vbi.c +++ b/linux/drivers/media/common/saa7146_vbi.c @@ -15,17 +15,13 @@ int vbi_workaround(struct saa7146_dev *dev) DECLARE_WAITQUEUE(wait, current); - DEB_VBI(("dev:%p",dev)); + DEB_VBI(("dev:%p\n",dev)); /* once again, a bug in the saa7146: the brs acquisition is buggy and especially the BXO-counter does not work as specified. there is this workaround, but please don't let me explain it. ;-) */ - if(0 != dev->ext->vbi) { - dev->ext->vbi(dev); - } - cpu = pci_alloc_consistent(dev->pci, 4096, &dma_addr); if (NULL == cpu) return -ENOMEM; @@ -451,3 +447,5 @@ struct saa7146_use_ops saa7146_vbi_uops = { .irq_done = vbi_irq_done, .read = vbi_read, }; + +EXPORT_SYMBOL_GPL(saa7146_vbi_uops); |