diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-06-17 17:35:44 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-06-17 17:35:44 +0000 |
commit | b37ecf5b03678191a26dd176cde8980b08eb766a (patch) | |
tree | 2658214e501950d9851b7692e92c5ca8cbf26810 /sys/arch/sparc64/include | |
parent | 715335a33b88e081090522d8f3f0a6aca95e87de (diff) |
Extend the sunfb structure to take care of the PROM cursor position
pointers, and adapt creator to the fb api.
ok jason@
Diffstat (limited to 'sys/arch/sparc64/include')
-rw-r--r-- | sys/arch/sparc64/include/fbvar.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/sparc64/include/fbvar.h b/sys/arch/sparc64/include/fbvar.h index 2431726858c..fcb8466f594 100644 --- a/sys/arch/sparc64/include/fbvar.h +++ b/sys/arch/sparc64/include/fbvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: fbvar.h,v 1.1 2003/06/16 20:46:13 miod Exp $ */ +/* $OpenBSD: fbvar.h,v 1.2 2003/06/17 17:35:43 miod Exp $ */ /* $NetBSD: fbvar.h,v 1.9 1997/07/07 23:31:30 pk Exp $ */ /* @@ -55,6 +55,8 @@ struct sunfb { int sf_fbsize; /* sf_height * sf_linebytes */ + int *sf_crowp, *sf_ccolp; /* PROM cursor position */ + struct rasops_info sf_ro; }; |