summaryrefslogtreecommitdiffstats
path: root/sys/dev
diff options
context:
space:
mode:
authorjkim <jkim@FreeBSD.org>2012-02-16 22:51:44 +0000
committerjkim <jkim@FreeBSD.org>2012-02-16 22:51:44 +0000
commit2b86faa18cb89921d202e133fa6a1c39b63cfe16 (patch)
tree321e35c5426c0ed8c4faed2d475724fc5108ea1a /sys/dev
parentfec287ef071d2f1734f7133185c98e15403999e1 (diff)
downloadFreeBSD-src-2b86faa18cb89921d202e133fa6a1c39b63cfe16.zip
FreeBSD-src-2b86faa18cb89921d202e133fa6a1c39b63cfe16.tar.gz
Set the initial mode for the adapter after executing VESA BIOS POST.
There is no need to set initial mode for BIOS.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/fb/vesa.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/dev/fb/vesa.c b/sys/dev/fb/vesa.c
index 0ec8a55..fcb384d 100644
--- a/sys/dev/fb/vesa.c
+++ b/sys/dev/fb/vesa.c
@@ -1469,6 +1469,7 @@ vesa_save_state(video_adapter_t *adp, void *p, size_t size)
static int
vesa_load_state(video_adapter_t *adp, void *p)
{
+ int mode;
if ((adp != vesa_adp) || (((adp_state_t *)p)->sig != V_STATE_SIG))
return ((*prevvidsw->load_state)(adp, p));
@@ -1478,8 +1479,10 @@ vesa_load_state(video_adapter_t *adp, void *p)
/* Try BIOS POST to restore a sane state. */
(void)vesa_bios_post();
- (void)int10_set_mode(adp->va_initial_bios_mode);
- (void)vesa_set_mode(adp, adp->va_mode);
+ mode = adp->va_mode;
+ (void)vesa_set_mode(adp, adp->va_initial_mode);
+ if (mode != adp->va_initial_mode);
+ (void)vesa_set_mode(adp, mode);
return (vesa_bios_save_restore(STATE_LOAD, ((adp_state_t *)p)->regs));
}
OpenPOWER on IntegriCloud