The patch titled fbdev: Coverity Bug 90 has been removed from the -mm tree. Its filename is fbdev-coverity-bug-90.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: fbdev: Coverity Bug 90 From: "Antonino A. Daplas" <adaplas@xxxxxxxxx> It's a false positive, but let's suppress it anyway. Signed-off-by: Antonino Daplas <adaplas@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/video/modedb.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff -puN drivers/video/modedb.c~fbdev-coverity-bug-90 drivers/video/modedb.c --- a/drivers/video/modedb.c~fbdev-coverity-bug-90 +++ a/drivers/video/modedb.c @@ -791,8 +791,9 @@ struct fb_videomode *fb_find_best_mode(s if (diff > d) { diff = d; best = mode; - } else if (diff == d && mode->refresh > best->refresh) - best = mode; + } else if (diff == d && best && + mode->refresh > best->refresh) + best = mode; } } return best; _ Patches currently in -mm which might be from adaplas@xxxxxxxxx are origin.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