diff options
author | Hartmut Hackmann <devnull@localhost> | 2005-06-14 22:48:18 +0000 |
---|---|---|
committer | Hartmut Hackmann <devnull@localhost> | 2005-06-14 22:48:18 +0000 |
commit | 5c8c87911e0e75e94aa09bcc71494ec6e1d9144e (patch) | |
tree | e6c3ce00ba081d1cfe43a9b8ab05db0c674c08de /linux/drivers/media/video/saa7134/saa7134-ts.c | |
parent | 2597ab2bbad3f4eb164f0a37a97fb0843f81462f (diff) | |
download | mediapointer-dvb-s2-5c8c87911e0e75e94aa09bcc71494ec6e1d9144e.tar.gz mediapointer-dvb-s2-5c8c87911e0e75e94aa09bcc71494ec6e1d9144e.tar.bz2 |
- fixed minor bug in DMA IRQ handler
Signed-off-by: Hartmut Hackmann <hartmut.hackmann@t-online.de>
Diffstat (limited to 'linux/drivers/media/video/saa7134/saa7134-ts.c')
-rw-r--r-- | linux/drivers/media/video/saa7134/saa7134-ts.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linux/drivers/media/video/saa7134/saa7134-ts.c b/linux/drivers/media/video/saa7134/saa7134-ts.c index 345eb2a8c..4dd9f1b23 100644 --- a/linux/drivers/media/video/saa7134/saa7134-ts.c +++ b/linux/drivers/media/video/saa7134/saa7134-ts.c @@ -1,5 +1,5 @@ /* - * $Id: saa7134-ts.c,v 1.14 2005/02/03 10:24:33 kraxel Exp $ + * $Id: saa7134-ts.c,v 1.15 2005/06/14 22:48:18 hhackmann Exp $ * * device driver for philips saa7134 based TV cards * video4linux video interface @@ -221,10 +221,10 @@ void saa7134_irq_ts_done(struct saa7134_dev *dev, unsigned long status) if (dev->ts_q.curr) { field = dev->ts_q.curr->vb.field; if (field == V4L2_FIELD_TOP) { - if ((status & 0x100000) != 0x000000) + if ((status & 0x100000) != 0x100000) goto done; } else { - if ((status & 0x100000) != 0x100000) + if ((status & 0x100000) != 0x000000) goto done; } saa7134_buffer_finish(dev,&dev->ts_q,STATE_DONE); |