diff options
author | Hans de Goede <hdegoede@redhat.com> | 2014-11-14 13:26:54 +0100 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2014-11-14 15:29:11 +0200 |
commit | ba168a3c7ff6df2e346959445190484b8331eb3d (patch) | |
tree | 65113f15fa58db852140af1d1ea00fa4d5a66184 /drivers/video | |
parent | 89c95001c00089836415aa7a78848ec2dec9f922 (diff) | |
download | linux-ba168a3c7ff6df2e346959445190484b8331eb3d.tar.gz linux-ba168a3c7ff6df2e346959445190484b8331eb3d.tar.bz2 linux-ba168a3c7ff6df2e346959445190484b8331eb3d.zip |
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: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/console/fbcon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/console/fbcon.c b/drivers/video/console/fbcon.c index eb976ee3a02f..ea437245562e 100644 --- a/drivers/video/console/fbcon.c +++ b/drivers/video/console/fbcon.c @@ -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 |