The patch titled ide: fix revision comparison in ide_in_drive_list has been added to the -mm tree. Its filename is ide-fix-revision-comparison-in-ide_in_drive_list.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: ide: fix revision comparison in ide_in_drive_list From: Kirill Smelkov <kirr@xxxxxxxxxx> Fix ide_in_drive_list: drive_table->id_firmware should be searched *in* id->fw_rev, not vice versa. Signed-off-by: Kirill Smelkov <kirr@xxxxxxxxxx> Cc: Bartlomiej Zolnierkiewicz <B.Zolnierkiewicz@xxxxxxxxxxxxxx> Cc: Alan Cox <alan@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/ide/ide-dma.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/ide/ide-dma.c~ide-fix-revision-comparison-in-ide_in_drive_list drivers/ide/ide-dma.c --- 25/drivers/ide/ide-dma.c~ide-fix-revision-comparison-in-ide_in_drive_list Tue Jun 20 15:15:45 2006 +++ 25-akpm/drivers/ide/ide-dma.c Tue Jun 20 15:15:45 2006 @@ -146,7 +146,7 @@ int ide_in_drive_list(struct hd_driveid { for ( ; drive_table->id_model ; drive_table++) if ((!strcmp(drive_table->id_model, id->model)) && - ((strstr(drive_table->id_firmware, id->fw_rev)) || + ((strstr(id->fw_rev, drive_table->id_firmware)) || (!strcmp(drive_table->id_firmware, "ALL")))) return 1; return 0; _ Patches currently in -mm which might be from kirr@xxxxxxxxxx are x86-compile-fix-for-asm-i386-alternativesh.patch ide-fix-revision-comparison-in-ide_in_drive_list.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