Commit 5c52cbeb authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Linus Torvalds

[PATCH] fbdev modedb: allow refresh rates for named video modes

fbdev modedb: Take into account the specified refresh rates for video modes
specified by name, so e.g.  all of `720p', `720p@60', and `720p@50' work.
Signed-off-by: default avatarGeert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>
Cc: James Simmons <jsimmons@infradead.org>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Paul Mackerras <paulus@samba.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 11227fd1
...@@ -610,10 +610,8 @@ int fb_find_mode(struct fb_var_screeninfo *var, ...@@ -610,10 +610,8 @@ int fb_find_mode(struct fb_var_screeninfo *var,
diff = refresh; diff = refresh;
best = -1; best = -1;
for (i = 0; i < dbsize; i++) { for (i = 0; i < dbsize; i++) {
if ((name_matches(db[i], name, namelen) && if (name_matches(db[i], name, namelen) ||
!fb_try_mode(var, info, &db[i], bpp))) (res_specified && res_matches(db[i], xres, yres))) {
return 1;
if (res_specified && res_matches(db[i], xres, yres)) {
if(!fb_try_mode(var, info, &db[i], bpp)) { if(!fb_try_mode(var, info, &db[i], bpp)) {
if(!refresh_specified || db[i].refresh == refresh) if(!refresh_specified || db[i].refresh == refresh)
return 1; return 1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment