The patch titled sata_promise: 2037x PATAPI support has been added to the -mm tree. Its filename is sata_promise-2037x-patapi-support.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: sata_promise: 2037x PATAPI support From: Mikael Pettersson <mikpe@xxxxxxxx> This patch adds ATAPI support for the PATA port on Promise 2037x chips. First-generation chips don't support ATAPI on their SATA ports, so the patch removes ATA_FLAG_NO_ATAPI from the 2037x common host flags, and adds it back via the _port_flags[] entries for the SATA ports. Signed-off-by: Mikael Pettersson <mikpe@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/ata/sata_promise.c | 6 +++++- 1 files changed, 5 insertions(+), 1 deletion(-) diff -puN drivers/ata/sata_promise.c~sata_promise-2037x-patapi-support drivers/ata/sata_promise.c --- a/drivers/ata/sata_promise.c~sata_promise-2037x-patapi-support +++ a/drivers/ata/sata_promise.c @@ -187,7 +187,7 @@ static const struct ata_port_info pdc_po /* board_2037x */ { .sht = &pdc_ata_sht, - .flags = PDC_COMMON_FLAGS /* | ATA_FLAG_SATA */, + .flags = PDC_COMMON_FLAGS /* | ATA_FLAG_NO_ATAPI | ATA_FLAG_SATA */, .pio_mask = 0x1f, /* pio0-4 */ .mwdma_mask = 0x07, /* mwdma0-2 */ .udma_mask = 0x7f, /* udma0-6 ; FIXME */ @@ -996,6 +996,10 @@ static int pdc_ata_init_one (struct pci_ probe_ent->n_ports = 2; probe_ent->_port_flags[0] = ATA_FLAG_SATA; probe_ent->_port_flags[1] = ATA_FLAG_SATA; + if (board_idx == board_2037x) { + probe_ent->_port_flags[0] |= ATA_FLAG_NO_ATAPI; + probe_ent->_port_flags[1] |= ATA_FLAG_NO_ATAPI; + } break; case board_20619: probe_ent->n_ports = 4; _ Patches currently in -mm which might be from mikpe@xxxxxxxx are git-libata-all.patch sata_promise-atapi-support.patch sata_promise-unbreak-20619.patch sata_promise-2037x-patapi-support.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