The patch titled Fix compile problem when sata debugging is on has been removed from the -mm tree. Its filename is fix-compile-problem-when-sata-debugging-is-on.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: Fix compile problem when sata debugging is on From: Keith Owens <kaos@xxxxxxxxxx> Fix a sata debug print statement that still uses an old variable name. Signed-off-by: Keith Owens <kaos@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/ata/ata_piix.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/ata/ata_piix.c~fix-compile-problem-when-sata-debugging-is-on drivers/scsi/ata_piix.c --- a/drivers/ata/ata_piix.c~fix-compile-problem-when-sata-debugging-is-on +++ a/drivers/ata/ata_piix.c @@ -687,8 +687,8 @@ static int piix_sata_prereset(struct ata present = 1; } - DPRINTK("ata%u: LEAVE, pcs=0x%x present_mask=0x%x\n", - ap->id, pcs, present_mask); + DPRINTK("ata%u: LEAVE, pcs=0x%x present=0x%x\n", + ap->id, pcs, present); if (!present) { ata_port_printk(ap, KERN_INFO, "SATA port has no device.\n"); _ Patches currently in -mm which might be from kaos@xxxxxxxxxx are git-libata-all.patch git-net.patch i386-show_registers-try-harder-to-print-failing.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