The patch titled ata: add more device IDs for supporting ATI SB700 SATA controller completely has been added to the -mm tree. Its filename is ata-add-more-device-ids-for-supporting-ati-sb700-sata-controller-completely.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: ata: add more device IDs for supporting ATI SB700 SATA controller completely From: "Henry Su" <henry.su@xxxxxxx> The sata controller device ID will be different according to the onchip sata type setting in system BIOS: Device Device ID SATA in IDE mode 0x4390 SATA in AHCI mode 0x4391 SATA in RAID mode with non-Raid 5 driver 0x4392 SATA in RAID mode with Raid 5 driver 0x4393 Signed-off-by: "Henry Su" <henry.su@xxxxxxx> Cc: Jeff Garzik <jeff@xxxxxxxxxx> Cc: Tejun Heo <htejun@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/ata/ahci.c | 5 ++++- 1 files changed, 4 insertions(+), 1 deletion(-) diff -puN drivers/ata/ahci.c~ata-add-more-device-ids-for-supporting-ati-sb700-sata-controller-completely drivers/ata/ahci.c --- a/drivers/ata/ahci.c~ata-add-more-device-ids-for-supporting-ati-sb700-sata-controller-completely +++ a/drivers/ata/ahci.c @@ -417,7 +417,10 @@ static const struct pci_device_id ahci_p /* ATI */ { PCI_VDEVICE(ATI, 0x4380), board_ahci_sb600 }, /* ATI SB600 */ - { PCI_VDEVICE(ATI, 0x4390), board_ahci_sb600 }, /* ATI SB700 */ + { PCI_VDEVICE(ATI, 0x4390), board_ahci_sb600 }, /* ATI SB700 IDE */ + { PCI_VDEVICE(ATI, 0x4391), board_ahci_sb600 }, /* ATI SB700 AHCI */ + { PCI_VDEVICE(ATI, 0x4392), board_ahci_sb600 }, /* ATI SB700 nor-raid5 */ + { PCI_VDEVICE(ATI, 0x4393), board_ahci_sb600 }, /* ATI SB700 raid5 */ /* VIA */ { PCI_VDEVICE(VIA, 0x3349), board_ahci_vt8251 }, /* VIA VT8251 */ _ Patches currently in -mm which might be from henry.su@xxxxxxx are origin.patch ata-add-more-device-ids-for-supporting-ati-sb700-sata-controller-completely.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