diff options
author | Mauro Carvalho Chehab <devnull@localhost> | 2005-07-07 14:17:47 +0000 |
---|---|---|
committer | Mauro Carvalho Chehab <devnull@localhost> | 2005-07-07 14:17:47 +0000 |
commit | 9444cd1427239cebbdd1ccd9085b13dc812c45bc (patch) | |
tree | 9e60d19fdd767e6eea30c5bae9acd098f4c4ba91 /linux/drivers/media/video/cx88/cx88-video.c | |
parent | f8f68583aabe1033ab048108d55d6b51db70ec55 (diff) | |
download | mediapointer-dvb-s2-9444cd1427239cebbdd1ccd9085b13dc812c45bc.tar.gz mediapointer-dvb-s2-9444cd1427239cebbdd1ccd9085b13dc812c45bc.tar.bz2 |
* cx88-core.c, cx88-mpeg.c, cx88-video.c, cx88.h:
- Some debug structs moved to their own .c file and converted to static
- some // comments converted to #if 0
* cx88-mpeg.c:
- Small cleanup for thinks like 0<<14
Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Diffstat (limited to 'linux/drivers/media/video/cx88/cx88-video.c')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-video.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-video.c b/linux/drivers/media/video/cx88/cx88-video.c index d6f6dd24b..eb9681e3c 100644 --- a/linux/drivers/media/video/cx88/cx88-video.c +++ b/linux/drivers/media/video/cx88/cx88-video.c @@ -1,5 +1,5 @@ /* - * $Id: cx88-video.c,v 1.78 2005/07/07 13:58:38 mchehab Exp $ + * $Id: cx88-video.c,v 1.79 2005/07/07 14:17:47 mchehab Exp $ * * device driver for Conexant 2388x based TV cards * video4linux video interface @@ -1857,6 +1857,14 @@ static void cx8800_vid_timeout(unsigned long data) spin_unlock_irqrestore(&dev->slock,flags); } +static char *cx88_vid_irqs[32] = { + "y_risci1", "u_risci1", "v_risci1", "vbi_risc1", + "y_risci2", "u_risci2", "v_risci2", "vbi_risc2", + "y_oflow", "u_oflow", "v_oflow", "vbi_oflow", + "y_sync", "u_sync", "v_sync", "vbi_sync", + "opc_err", "par_err", "rip_err", "pci_abort", +}; + static void cx8800_vid_irq(struct cx8800_dev *dev) { struct cx88_core *core = dev->core; |