The patch titled video: Get the default mode from the right database has been added to the -mm tree. Its filename is video-get-the-default-mode-from-the-right-database.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: video: Get the default mode from the right database From: Jordan Crouse <jordan.crouse@xxxxxxx> If no default mode is specified, it should be grabbed from the supplied database, not the default one. Signed-off-by: Jordan Crouse <jordan.crouse@xxxxxxx> Cc: Geert Uytterhoeven <geert@xxxxxxxxxxxxxx> Cc: "Antonino A. Daplas" <adaplas@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/video/modedb.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff -puN drivers/video/modedb.c~video-get-the-default-mode-from-the-right-database drivers/video/modedb.c --- a/drivers/video/modedb.c~video-get-the-default-mode-from-the-right-database +++ a/drivers/video/modedb.c @@ -505,8 +505,11 @@ int fb_find_mode(struct fb_var_screeninf db = modedb; dbsize = ARRAY_SIZE(modedb); } - if (!default_mode) + if (!default_mode && db != modedb) + default_mode = &db[0]; + else default_mode = &modedb[DEFAULT_MODEDB_INDEX]; + if (!default_bpp) default_bpp = 8; _ Patches currently in -mm which might be from jordan.crouse@xxxxxxx are acpi-clear-gpe-before-disabling-it.patch git-cryptodev.patch video-get-the-default-mode-from-the-right-database.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