Index: alsa-kernel/pci/intel8x0.c =================================================================== RCS file: /suse/tiwai/cvs/alsa/alsa-kernel/pci/intel8x0.c,v retrieving revision 1.115 diff -u -r1.115 intel8x0.c --- alsa-kernel/pci/intel8x0.c 6 Feb 2004 17:47:49 -0000 1.115 +++ alsa-kernel/pci/intel8x0.c 13 Feb 2004 10:32:46 -0000 @@ -804,10 +804,20 @@ spin_lock(&chip->reg_lock); status = igetdword(chip, chip->int_sta_reg); if ((status & chip->int_sta_mask) == 0) { - if (status) + static int status_ack = 0; + static int err_count = 10; + if (status) { iputdword(chip, chip->int_sta_reg, status); + status_ack = igetdword(chip, chip->int_sta_reg); + } spin_unlock(&chip->reg_lock); - return IRQ_NONE; + status ^= status_ack; + if (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); } for (i = 0; i < chip->bdbars_count; i++) {