diff options
author | Andy Walls <awalls@radix.net> | 2008-11-09 16:14:07 -0500 |
---|---|---|
committer | Andy Walls <awalls@radix.net> | 2008-11-09 16:14:07 -0500 |
commit | 4c6f942c4bda31271b632907d23021b22fa1d5cf (patch) | |
tree | bc184927fd85498afe45699b9318a0342d3e9806 /linux/drivers/media/video/cx18/cx18-irq.h | |
parent | 359020f9d46c383a26678ad896a1b7911b6284f7 (diff) | |
download | mediapointer-dvb-s2-4c6f942c4bda31271b632907d23021b22fa1d5cf.tar.gz mediapointer-dvb-s2-4c6f942c4bda31271b632907d23021b22fa1d5cf.tar.bz2 |
cx18: Prevent CX23418 from clearing it's outgoing ack interrupts to driver
From: Andy Walls <awalls@radix.net>
When the CX23418 CPU unit sent out an ack interrupt to the linux driver, it
also received that interrupt and cleared the flag before the linux driver could
see what the interrupt was for. This fix prevents the CPU from receiving an
IRQ for it's own outgoing ack's to the linux driver. This fix is critical now
that the linux driver doesn't poll but relies on these ack interrupts.
Priority: high
Signed-off-by: Andy Walls <awalls@radix.net>
Diffstat (limited to 'linux/drivers/media/video/cx18/cx18-irq.h')
-rw-r--r-- | linux/drivers/media/video/cx18/cx18-irq.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/linux/drivers/media/video/cx18/cx18-irq.h b/linux/drivers/media/video/cx18/cx18-irq.h index d1d9d1967..6472e42c6 100644 --- a/linux/drivers/media/video/cx18/cx18-irq.h +++ b/linux/drivers/media/video/cx18/cx18-irq.h @@ -28,6 +28,7 @@ #define SW1_INT_ENABLE_PCI 0xc7311c #define SW2_INT_SET 0xc73140 #define SW2_INT_STATUS 0xc73144 +#define SW2_INT_ENABLE_CPU 0xc73158 #define SW2_INT_ENABLE_PCI 0xc7315c #if LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 18) |