Commit 15e7820e authored by James Simmons's avatar James Simmons Committed by Linus Torvalds

[PATCH] fbdev booting fix.

[FBCON] Fixed the order of which driver is used for the console. Before
the api change the last driver loaded became the default one. Now this is
not the case.
parent f2c9fde1
......@@ -545,7 +545,7 @@ static const char *fbcon_startup(void)
return display_desc;
done = 1;
info = registered_fb[num_registered_fb-1];
info = registered_fb[0];
if (!info) return NULL;
info->currcon = -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