Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ba168a3c authored by Hans de Goede's avatar Hans de Goede Committed by Tomi Valkeinen
Browse files

fbcon: Change fbcon_init from module_init to fs_initcall



Various fb drivers register themselves before module_init so as to have a
console as early as possible, this is of little use if fbcon does not
initialize early too.

Fbcon cannot initialize earlier then fs_initcall, because then the creation
of /sys/class/graphics/fbcon will fail.

Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent 89c95001
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3624,7 +3624,7 @@ static int __init fb_console_init(void)
	return 0;
}

module_init(fb_console_init);
fs_initcall(fb_console_init);

#ifdef MODULE