svn commit: r232061 - head/sys/dev/fb

[ Available lists | Index of svn-src-head | Month of Feb 2012 | Week of 23 Feb 2012 | Raw email | View thread | Wrap long lines | Reply ]
From
Jung-uk Kim <jkim@FreeBSD.org>
Date
23 Feb 2012 18:59:35
Subject
svn commit: r232061 - head/sys/dev/fb
Message-ID
201202231859.q1NIxWTU018671@svn.freebsd.org


[ Hide this part ]
Author: jkim
Date: Thu Feb 23 18:59:32 2012
New Revision: 232061
URL: http://svn.freebsd.org/changeset/base/232061

Log:
Fix a typo introduced in r231843.

Modified:
head/sys/dev/fb/vesa.c

Modified: head/sys/dev/fb/vesa.c
==============================================================================
--- head/sys/dev/fb/vesa.c Thu Feb 23 18:54:33 2012 (r232060)
+++ head/sys/dev/fb/vesa.c Thu Feb 23 18:59:32 2012 (r232061)
@@ -1481,7 +1481,7 @@ vesa_load_state(video_adapter_t *adp, vo
(void)vesa_bios_post();
mode = adp->va_mode;
(void)vesa_set_mode(adp, adp->va_initial_mode);
- if (mode != 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));


Elapsed time: 0.065 seconds