diff options
author | Oliver Endriss <o.endriss@gmx.de> | 2006-07-19 03:55:23 +0200 |
---|---|---|
committer | Oliver Endriss <o.endriss@gmx.de> | 2006-07-19 03:55:23 +0200 |
commit | 893daa56583da63d1f0734d1b6a478d37c3a7a9f (patch) | |
tree | 0c841e07943a34c694c07dade67ae70a62d65e42 /linux/drivers/media/dvb/ttpci/budget-patch.c | |
parent | 82a8cd5b91676683cfa89ef44c35f60db77c6f2a (diff) | |
download | mediapointer-dvb-s2-893daa56583da63d1f0734d1b6a478d37c3a7a9f.tar.gz mediapointer-dvb-s2-893daa56583da63d1f0734d1b6a478d37c3a7a9f.tar.bz2 |
[budget/budget-av/budget-ci/budget-patch drivers] fixed DMA start/stop code
From: Oliver Endriss <o.endriss@gmx.de>
Fix bug reported by Andrew de Quincey:
After cold boot the saa7146 DMA did not start if the demuxer was opened
before the frontend has locked to the signal.
DMA transfers will be started now if (and only if)
the frontend is locked and data should be sent to the demuxer.
Signed-off-by: Oliver Endriss <o.endriss@gmx.de>
Diffstat (limited to 'linux/drivers/media/dvb/ttpci/budget-patch.c')
-rw-r--r-- | linux/drivers/media/dvb/ttpci/budget-patch.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/linux/drivers/media/dvb/ttpci/budget-patch.c b/linux/drivers/media/dvb/ttpci/budget-patch.c index a3f827faa..34c07048c 100644 --- a/linux/drivers/media/dvb/ttpci/budget-patch.c +++ b/linux/drivers/media/dvb/ttpci/budget-patch.c @@ -617,6 +617,8 @@ static int budget_patch_attach (struct saa7146_dev* dev, struct saa7146_pci_exte budget->dvb_adapter.priv = budget; frontend_init(budget); + ttpci_budget_init_hooks(budget); + return 0; } |