If PCDISPLAY_SOFTCURSOR is defined, disable the hardware cursor on resume.

This commit is contained in:
jmcneill 2010-10-19 22:27:54 +00:00
parent 293d066925
commit 42ff6ac8bc
1 changed files with 7 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: vga.c,v 1.104 2010/04/19 18:24:26 dyoung Exp $ */
/* $NetBSD: vga.c,v 1.105 2010/10/19 22:27:54 jmcneill Exp $ */
/*
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
@ -28,7 +28,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: vga.c,v 1.104 2010/04/19 18:24:26 dyoung Exp $");
__KERNEL_RCSID(0, "$NetBSD: vga.c,v 1.105 2010/10/19 22:27:54 jmcneill Exp $");
/* for WSCONS_SUPPORT_PCVTFONTS */
#include "opt_wsdisplay_compat.h"
@ -1480,4 +1480,9 @@ vga_resume(struct vga_softc *sc)
#ifdef VGA_RESET_ON_RESUME
vga_initregs(&sc->sc_vc->hdl);
#endif
#ifdef PCDISPLAY_SOFTCURSOR
/* Disable the hardware cursor */
vga_6845_write(&sc->sc_vc->hdl, curstart, 0x20);
vga_6845_write(&sc->sc_vc->hdl, curend, 0x00);
#endif
}