projects
/
xen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
68974ff
)
vga: Fix screen clear at end of Xen bootstrap.
author
Keir Fraser
<keir.fraser@citrix.com>
Tue, 9 Dec 2008 13:23:15 +0000
(13:23 +0000)
committer
Keir Fraser
<keir.fraser@citrix.com>
Tue, 9 Dec 2008 13:23:15 +0000
(13:23 +0000)
Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
xen/drivers/video/vga.c
patch
|
blob
|
history
diff --git
a/xen/drivers/video/vga.c
b/xen/drivers/video/vga.c
index 45823823756382e1589b01249f47bb77e58a6648..7595909e55ce38c34e2eb53269c555a865a73d18 100644
(file)
--- a/
xen/drivers/video/vga.c
+++ b/
xen/drivers/video/vga.c
@@
-111,12
+111,12
@@
void __init vga_endboot(void)
switch ( vga_console_info.video_type )
{
case XEN_VGATYPE_TEXT_MODE_3:
- vesa_endboot(vgacon_keep);
- break;
- case XEN_VGATYPE_VESA_LFB:
if ( !vgacon_keep )
memset(video, 0, columns * lines * 2);
break;
+ case XEN_VGATYPE_VESA_LFB:
+ vesa_endboot(vgacon_keep);
+ break;
default:
BUG();
}