The patch titled intelfb: Fix incorrect boolean check has been added to the -mm tree. Its filename is intelfb-use-firmware-edid-for-mode-database-fix.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: intelfb: Fix incorrect boolean check From: "Antonino A. Daplas" <adaplas@xxxxxxxxx> Fix wrong boolean check of the return value of fb_find_mode() Signed-off-by: Antonino Daplas <adaplas@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/video/intelfb/intelfbdrv.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/video/intelfb/intelfbdrv.c~intelfb-use-firmware-edid-for-mode-database-fix drivers/video/intelfb/intelfbdrv.c --- devel/drivers/video/intelfb/intelfbdrv.c~intelfb-use-firmware-edid-for-mode-database-fix 2006-05-21 17:35:54.000000000 -0700 +++ devel-akpm/drivers/video/intelfb/intelfbdrv.c 2006-05-21 17:35:54.000000000 -0700 @@ -1054,7 +1054,7 @@ intelfb_init_var(struct intelfb_info *di dinfo->info->monspecs.modedb_len, NULL, 0); - if (msrc && msrc > 1) { + if (msrc != 1) { printk("intelfb: No mode in private database, " "intelfb: looking for mode in global " "database "); _ Patches currently in -mm which might be from adaplas@xxxxxxxxx are savagefb-allocate-space-for-current-and-saved-register.patch savagefb-add-state-save-and_restore-hooks.patch savagefb-add-state-save-and_restore-hooks-fix.patch fbdev-more-accurate-sync-range-extrapolation.patch nvidiafb-revise-pci_device_id-table.patch atyfb-fix-hardware-cursor-handling.patch atyfb-remove-unneeded-calls-to-wait_for_idle.patch atyfb-set-correct-acceleration-flags.patch epson1355fb-update-platform-code.patch vesafb-update-platform-code.patch vfb-update-platform-code.patch vga16fb-update-platform-code.patch fbdev-static-pseudocolor-with-depth-less-than-4-does.patch savagefb-whitespace-cleanup.patch fbdev-firmware-edid-fixes.patch nvidiafb-add-support-for-geforce-6100-and-related-chipsets.patch intelfb-use-firmware-edid-for-mode-database.patch intelfb-use-firmware-edid-for-mode-database-fix.patch vesafb-fix-return-code-of-vesafb_setcolreg.patch vesafb-prefer-vga-registers-over-pmi.patch atyfb-fix-dead-code.patch fbdev-coverity-bug-85.patch fbdev-coverity-bug-90.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