aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/boot/compressed
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2010-02-28 13:43:53 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2010-02-28 13:43:53 -0500
commitf6a0b5cd34d6e922cc7258c5429fb0f17508ceb6 (patch)
tree0fae4978f63219b30ae0039a6a05c93df950fd37 /arch/x86/boot/compressed
parentd6cd4715e21508bebbb1928c91d628bd65f5de5f (diff)
parent8e92dc767abb58357e696a48fc3d8ce615a9c01a (diff)
Merge branch 'x86-setup-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'x86-setup-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip: x86, setup: Don't skip mode setting for the standard VGA modes x86-64, setup: Inhibit decompressor output if video info is invalid x86, setup: When restoring the screen, update boot_params.screen_info
Diffstat (limited to 'arch/x86/boot/compressed')
-rw-r--r--arch/x86/boot/compressed/misc.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/x86/boot/compressed/misc.c b/arch/x86/boot/compressed/misc.c
index 88042e812d3c..51e240779a44 100644
--- a/arch/x86/boot/compressed/misc.c
+++ b/arch/x86/boot/compressed/misc.c
@@ -180,11 +180,9 @@ static void __putstr(int error, const char *s)
180 return; 180 return;
181#endif 181#endif
182 182
183#ifdef CONFIG_X86_32
184 if (real_mode->screen_info.orig_video_mode == 0 && 183 if (real_mode->screen_info.orig_video_mode == 0 &&
185 lines == 0 && cols == 0) 184 lines == 0 && cols == 0)
186 return; 185 return;
187#endif
188 186
189 x = real_mode->screen_info.orig_x; 187 x = real_mode->screen_info.orig_x;
190 y = real_mode->screen_info.orig_y; 188 y = real_mode->screen_info.orig_y;