Update of /cvsroot/alsa/alsa-kernel/pci
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23731/pci

Modified Files:
        intel8x0.c 
Log Message:
Removed the unprocessed IRQ detection, it seems bogus.






Index: intel8x0.c
===================================================================
RCS file: /cvsroot/alsa/alsa-kernel/pci/intel8x0.c,v
retrieving revision 1.127
retrieving revision 1.128
diff -u -r1.127 -r1.128
--- intel8x0.c  19 Mar 2004 13:46:40 -0000      1.127
+++ intel8x0.c  19 Mar 2004 20:18:37 -0000      1.128
@@ -824,19 +824,16 @@
        spin_lock(&chip->reg_lock);
        status = igetdword(chip, chip->int_sta_reg);
        if ((status & chip->int_sta_mask) == 0) {
-               static int err_count = 10;
                if (status) {
                        /* ack */
                        iputdword(chip, chip->int_sta_reg, status);
+                       /* some Nforce[2] boards have problems when
+                          IRQ_NONE is returned here.
+                       */
                        if (chip->device_type != DEVICE_NFORCE)
-                               status ^= igetdword(chip, chip->int_sta_reg);
+                               status = 0;
                }
                spin_unlock(&chip->reg_lock);
-               if (chip->device_type != DEVICE_NFORCE && status && err_count) {
-                       err_count--;
-                       snd_printd("intel8x0: unknown IRQ bits 0x%x (sta_mask=0x%x)\n",
-                                  status, chip->int_sta_mask);
-               }
                return IRQ_RETVAL(status);
        }
 



-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
_______________________________________________
Alsa-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-cvslog

Reply via email to