mirror of https://gitee.com/openkylin/linux.git
[PATCH] video: Get the default mode from the right database
If no default mode is specified, it should be grabbed from the supplied database, not the default one. [teanropo@jyu.fi: fix it] [akpm@osdl.org: simplify it] [akpm@osdl.org: remove pointless DEFAULT_MODEDB_INDEX] Signed-off-by: Jordan Crouse <jordan.crouse@amd.com> Cc: Geert Uytterhoeven <geert@linux-m68k.org> Cc: "Antonino A. Daplas" <adaplas@pol.net> Signed-off-by: Tero Roponen <teanropo@jyu.fi> Cc: James Simmons <jsimmons@infradead.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
572c04b24b
commit
c25623f554
|
@ -34,8 +34,6 @@ const char *global_mode_option;
|
|||
* Standard video mode definitions (taken from XFree86)
|
||||
*/
|
||||
|
||||
#define DEFAULT_MODEDB_INDEX 0
|
||||
|
||||
static const struct fb_videomode modedb[] = {
|
||||
{
|
||||
/* 640x400 @ 70 Hz, 31.5 kHz hsync */
|
||||
|
@ -505,8 +503,10 @@ int fb_find_mode(struct fb_var_screeninfo *var,
|
|||
db = modedb;
|
||||
dbsize = ARRAY_SIZE(modedb);
|
||||
}
|
||||
|
||||
if (!default_mode)
|
||||
default_mode = &modedb[DEFAULT_MODEDB_INDEX];
|
||||
default_mode = &db[0];
|
||||
|
||||
if (!default_bpp)
|
||||
default_bpp = 8;
|
||||
|
||||
|
|
Loading…
Reference in New Issue