diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-01-09 21:52:13 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-01-09 21:52:13 +0000 |
commit | 359511731a3d6745a36ce439977017c551795a88 (patch) | |
tree | 191df327b5ca2efd0c04e4cb55f039542367a75c /sys/dev | |
parent | 16c1fc8fb8468cd6d1006bdd325f7ca7c1cee280 (diff) |
Introduce a wsdisplay type for mac68k frame buffers; we might need to become
less generic in the future, though.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/wscons/wsconsio.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/wscons/wsconsio.h b/sys/dev/wscons/wsconsio.h index c8b2996375c..39bd7c2cea1 100644 --- a/sys/dev/wscons/wsconsio.h +++ b/sys/dev/wscons/wsconsio.h @@ -1,4 +1,4 @@ -/* $OpenBSD: wsconsio.h,v 1.36 2005/05/15 11:29:15 miod Exp $ */ +/* $OpenBSD: wsconsio.h,v 1.37 2006/01/09 21:52:12 miod Exp $ */ /* $NetBSD: wsconsio.h,v 1.74 2005/04/28 07:15:44 martin Exp $ */ /* @@ -256,7 +256,7 @@ struct wsmouse_calibcoords { #define WSDISPLAY_TYPE_HPCFB 16 /* Handheld/PalmSize PC */ #define WSDISPLAY_TYPE_VIDC 17 /* Acorn/ARM VIDC */ #define WSDISPLAY_TYPE_SPX 18 /* DEC SPX (VS3100/VS4000) */ -#define WSDISPLAY_TYPE_GPX 19 /* DEC GPX (uVAX/VS2K/VS3100 */ +#define WSDISPLAY_TYPE_GPX 19 /* DEC GPX (uVAX/VS2K/VS3100) */ #define WSDISPLAY_TYPE_LCG 20 /* DEC LCG (VS4000) */ #define WSDISPLAY_TYPE_VAX_MONO 21 /* DEC VS2K/VS3100 mono */ #define WSDISPLAY_TYPE_SB_P9100 22 /* Tadpole SPARCbook P9100 */ @@ -286,6 +286,7 @@ struct wsmouse_calibcoords { #define WSDISPLAY_TYPE_HYPERION 46 /* HP Hyperion */ #define WSDISPLAY_TYPE_TOPCAT 47 /* HP Topcat */ #define WSDISPLAY_TYPE_PXALCD 48 /* PXALCD (Zaurus) */ +#define WSDISPLAY_TYPE_MAC68K 49 /* Generic mac68k framebuffer */ /* Basic display information. Not applicable to all display types. */ struct wsdisplay_fbinfo { |