The patch titled alim15x3.c: M5229 (rev c8) support for DMA cd-writer has been added to the -mm tree. Its filename is alim15x3c-m5229-rev-c8-support-for-dma-cd-writer.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: alim15x3.c: M5229 (rev c8) support for DMA cd-writer From: Michael De Backer <micdb@xxxxxxxxx> Configuration bits are not set properly for DMA on some chipset revisions. It has already been corrected for M5229 (rev c7) but not for M5229 (rev c8). This leads to the bug described at http://bugzilla.kernel.org/show_bug.cgi?id=5786 (lost interrupt + ide bus hangs). Signed-off-by: Michael De Backer <micdb@xxxxxxxxx> Cc: Alan Cox <alan@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/ide/pci/alim15x3.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/ide/pci/alim15x3.c~alim15x3c-m5229-rev-c8-support-for-dma-cd-writer drivers/ide/pci/alim15x3.c --- a/drivers/ide/pci/alim15x3.c~alim15x3c-m5229-rev-c8-support-for-dma-cd-writer +++ a/drivers/ide/pci/alim15x3.c @@ -730,7 +730,7 @@ static unsigned int __devinit ata66_ali1 if(m5229_revision <= 0x20) tmpbyte = (tmpbyte & (~0x02)) | 0x01; - else if (m5229_revision == 0xc7) + else if (m5229_revision == 0xc7 || m5229_revision == 0xc8) tmpbyte |= 0x03; else tmpbyte |= 0x01; _ Patches currently in -mm which might be from micdb@xxxxxxxxx are alim15x3c-m5229-rev-c8-support-for-dma-cd-writer.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html