The patch titled sata_sil24: SII3124 sata driver endian problem has been added to the -mm tree. Its filename is sata_sil24-sii3124-sata-driver-endian-problem.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_sil24: SII3124 sata driver endian problem From: "Rune Torgersen" <runet@xxxxxxxxxxxx> Fix an endian issue in the sil24 driver. Signed-off-by: Rune Torgersen <runet@xxxxxxxxxxxx> Acked-by: Jeff Garzik <jeff@xxxxxxxxxx> Cc: Tejun Heo <htejun@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/scsi/sata_sil24.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff -puN drivers/scsi/sata_sil24.c~sata_sil24-sii3124-sata-driver-endian-problem drivers/scsi/sata_sil24.c --- devel/drivers/scsi/sata_sil24.c~sata_sil24-sii3124-sata-driver-endian-problem 2006-06-03 02:24:29.000000000 -0700 +++ devel-akpm/drivers/scsi/sata_sil24.c 2006-06-03 02:24:29.000000000 -0700 @@ -454,7 +454,7 @@ static int sil24_softreset(struct ata_po */ msleep(10); - prb->ctrl = PRB_CTRL_SRST; + prb->ctrl = cpu_to_le16(PRB_CTRL_SRST); prb->fis[1] = 0; /* no PM yet */ writel((u32)paddr, port + PORT_CMD_ACTIVATE); @@ -551,9 +551,9 @@ static void sil24_qc_prep(struct ata_que if (qc->tf.protocol != ATA_PROT_ATAPI_NODATA) { if (qc->tf.flags & ATA_TFLAG_WRITE) - prb->ctrl = PRB_CTRL_PACKET_WRITE; + prb->ctrl = cpu_to_le16(PRB_CTRL_PACKET_WRITE); else - prb->ctrl = PRB_CTRL_PACKET_READ; + prb->ctrl = cpu_to_le16(PRB_CTRL_PACKET_READ); } else prb->ctrl = 0; _ Patches currently in -mm which might be from runet@xxxxxxxxxxxx are sata_sil24-sii3124-sata-driver-endian-problem.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