The patch titled fb modedb: Refactor confusing mode_option assignment has been removed from the -mm tree. Its filename was fb-modedb-refactor-confusing-mode_option-assignment.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: fb modedb: Refactor confusing mode_option assignment From: Geert Uytterhoeven <Geert.Uytterhoeven@xxxxxxxxxxx> Signed-off-by: Geert Uytterhoeven <Geert.Uytterhoeven@xxxxxxxxxxx> Cc: "Antonino A. Daplas" <adaplas@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/video/modedb.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff -puN drivers/video/modedb.c~fb-modedb-refactor-confusing-mode_option-assignment drivers/video/modedb.c --- a/drivers/video/modedb.c~fb-modedb-refactor-confusing-mode_option-assignment +++ a/drivers/video/modedb.c @@ -510,7 +510,9 @@ int fb_find_mode(struct fb_var_screeninf default_bpp = 8; /* Did the user specify a video mode? */ - if (mode_option || (mode_option = fb_mode_option)) { + if (!mode_option) + mode_option = fb_mode_option; + if (mode_option) { const char *name = mode_option; unsigned int namelen = strlen(name); int res_specified = 0, bpp_specified = 0, refresh_specified = 0; _ Patches currently in -mm which might be from Geert.Uytterhoeven@xxxxxxxxxxx are origin.patch ps3av-remove-unused-fields-in-ps3av_monitor_quirks.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