Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5ba862b77e2d7f9e6e2cb133c43be32ac612aea5
Commit:     5ba862b77e2d7f9e6e2cb133c43be32ac612aea5
Parent:     8ddac9ee4b6f08d7cacf79202ab882eefc55b0c0
Author:     Trent Piepho <[EMAIL PROTECTED]>
AuthorDate: Sat Aug 18 07:02:26 2007 -0300
Committer:  Mauro Carvalho Chehab <[EMAIL PROTECTED]>
CommitDate: Tue Oct 9 22:05:55 2007 -0300

    V4L/DVB (6065): cx88-alsa: Call core irq handler when needed
    
    When an irq handled by the cx88 core driver (currently IR and errors) occurs
    and the cx88-alsa irq handler is the first called, it will claim to have
    handled the irq but it doesn't call cx88_core_irq() to handle it.
    
    The means loading cx88-alsa can disable the IR remote.
    
    Signed-off-by: Trent Piepho <[EMAIL PROTECTED]>
    Signed-off-by: Mauro Carvalho Chehab <[EMAIL PROTECTED]>
---
 drivers/media/video/cx88/cx88-alsa.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/drivers/media/video/cx88/cx88-alsa.c 
b/drivers/media/video/cx88/cx88-alsa.c
index a529c0a..76a8c01 100644
--- a/drivers/media/video/cx88/cx88-alsa.c
+++ b/drivers/media/video/cx88/cx88-alsa.c
@@ -285,6 +285,8 @@ static irqreturn_t cx8801_irq(int irq, void *dev_id)
                handled = 1;
                cx_write(MO_PCI_INTSTAT, status);
 
+               if (status & core->pci_irqmask)
+                       cx88_core_irq(core, status);
                if (status & PCI_INT_AUDINT) {
                        dprintk( 2, "    ALSA IRQ handling\n" );
                        cx8801_aud_irq(chip);
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to