diff options
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/boot/main.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/arch/x86/boot/main.c b/arch/x86/boot/main.c index 1f95750ede28..22ca62ba40c8 100644 --- a/arch/x86/boot/main.c +++ b/arch/x86/boot/main.c | |||
@@ -131,9 +131,6 @@ void main(void) | |||
131 | /* Set keyboard repeat rate (why?) */ | 131 | /* Set keyboard repeat rate (why?) */ |
132 | keyboard_set_repeat(); | 132 | keyboard_set_repeat(); |
133 | 133 | ||
134 | /* Set the video mode */ | ||
135 | set_video(); | ||
136 | |||
137 | /* Query MCA information */ | 134 | /* Query MCA information */ |
138 | query_mca(); | 135 | query_mca(); |
139 | 136 | ||
@@ -154,6 +151,10 @@ void main(void) | |||
154 | #if defined(CONFIG_EDD) || defined(CONFIG_EDD_MODULE) | 151 | #if defined(CONFIG_EDD) || defined(CONFIG_EDD_MODULE) |
155 | query_edd(); | 152 | query_edd(); |
156 | #endif | 153 | #endif |
154 | |||
155 | /* Set the video mode */ | ||
156 | set_video(); | ||
157 | |||
157 | /* Do the last things and invoke protected mode */ | 158 | /* Do the last things and invoke protected mode */ |
158 | go_to_protected_mode(); | 159 | go_to_protected_mode(); |
159 | } | 160 | } |