aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media
diff options
context:
space:
mode:
authorManu Abraham <abraham.manu@gmail.com>2009-12-04 03:25:45 -0500
committerMauro Carvalho Chehab <mchehab@redhat.com>2010-01-17 08:55:38 -0500
commit9e49e8d913209e7221f761193f18a91d130b9e2d (patch)
treec6332e328308cc821b2399c5f5b68af16288eba8 /drivers/media
parentadcc9dd57e814d5ac3928f92f431fbe4808e936f (diff)
V4L/DVB (13769): [Mantis] Smart Buffer Burst Read Ready cannot flag FR/DA Irq
Signed-off-by: Manu Abraham <manu@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media')
-rw-r--r--drivers/media/dvb/mantis/mantis_evm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/dvb/mantis/mantis_evm.c b/drivers/media/dvb/mantis/mantis_evm.c
index 000cf396a2c7..1594bb85a20f 100644
--- a/drivers/media/dvb/mantis/mantis_evm.c
+++ b/drivers/media/dvb/mantis/mantis_evm.c
@@ -72,9 +72,9 @@ static void mantis_hifevm_work(struct work_struct *work)
72 if (gpif_stat & MANTIS_SBUF_OVFLW) 72 if (gpif_stat & MANTIS_SBUF_OVFLW)
73 dprintk(verbose, MANTIS_DEBUG, 1, "Event Mgr: Adapter(%d) Slot(0): Smart Buffer Overflow", mantis->num); 73 dprintk(verbose, MANTIS_DEBUG, 1, "Event Mgr: Adapter(%d) Slot(0): Smart Buffer Overflow", mantis->num);
74 74
75 if (gpif_stat & MANTIS_GPIF_BRRDY) { 75 if (gpif_stat & MANTIS_GPIF_BRRDY)
76 dprintk(verbose, MANTIS_DEBUG, 1, "Event Mgr: Adapter(%d) Slot(0): Smart Buffer Read Ready", mantis->num); 76 dprintk(verbose, MANTIS_DEBUG, 1, "Event Mgr: Adapter(%d) Slot(0): Smart Buffer Read Ready", mantis->num);
77 } 77
78 if (gpif_stat & MANTIS_GPIF_WRACK) 78 if (gpif_stat & MANTIS_GPIF_WRACK)
79 dprintk(verbose, MANTIS_DEBUG, 1, "Event Mgr: Adapter(%d) Slot(0): Slave Write ACK", mantis->num); 79 dprintk(verbose, MANTIS_DEBUG, 1, "Event Mgr: Adapter(%d) Slot(0): Slave Write ACK", mantis->num);
80 80