diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-09-29 19:46:05 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-09-29 19:46:05 +0000 |
commit | 45891e1595258793ffd3dbfddb1e1d86d1b65b75 (patch) | |
tree | c51bf3016916c9de109fcd6b8cedf41854c441fd /sys/dev/ic/pcdisplayvar.h | |
parent | 7b4c2af499f84d6e248f4a1c3f4e525726251ca8 (diff) |
If option PCDISPLAY_SOFTCURSOR, force the hardware cursor off every time
we switch vt, so that the hardware cursor does not reappear after starting
X11, and switching to a text vt.
Spotted by jmc@
Diffstat (limited to 'sys/dev/ic/pcdisplayvar.h')
-rw-r--r-- | sys/dev/ic/pcdisplayvar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/ic/pcdisplayvar.h b/sys/dev/ic/pcdisplayvar.h index 50ae5eccf7e..314ed8b8aca 100644 --- a/sys/dev/ic/pcdisplayvar.h +++ b/sys/dev/ic/pcdisplayvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pcdisplayvar.h,v 1.6 2004/04/02 04:39:50 deraadt Exp $ */ +/* $OpenBSD: pcdisplayvar.h,v 1.7 2006/09/29 19:46:02 miod Exp $ */ /* $NetBSD: pcdisplayvar.h,v 1.8 2000/01/25 02:44:03 ad Exp $ */ /* @@ -82,6 +82,7 @@ static inline void _pcdisplay_6845_write(ph, reg, val) _pcdisplay_6845_write(ph, offsetof(struct reg_mc6845, reg), val) void pcdisplay_cursor_init(struct pcdisplayscreen *, int); +void pcdisplay_cursor_reset(struct pcdisplayscreen *); void pcdisplay_cursor(void *, int, int, int); #if 0 unsigned int pcdisplay_mapchar_simple(void *, int); |