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

Modified Files:
        intel8x0.c 
Log Message:
fixed the interrupt problem with NForce(2).



Index: intel8x0.c
===================================================================
RCS file: /cvsroot/alsa/alsa-kernel/pci/intel8x0.c,v
retrieving revision 1.122
retrieving revision 1.123
diff -u -r1.122 -r1.123
--- intel8x0.c  5 Mar 2004 12:04:43 -0000       1.122
+++ intel8x0.c  5 Mar 2004 13:13:16 -0000       1.123
@@ -813,10 +813,11 @@
                if (status) {
                        /* ack */
                        iputdword(chip, chip->int_sta_reg, status);
-                       status ^= igetdword(chip, chip->int_sta_reg);
+                       if (chip->device_type != DEVICE_NFORCE)
+                               status ^= igetdword(chip, chip->int_sta_reg);
                }
                spin_unlock(&chip->reg_lock);
-               if (status && err_count) {
+               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);



-------------------------------------------------------
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