diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2010-03-07 21:26:25 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2010-03-07 21:26:25 +0000 |
commit | 620991ed7c96f5cb2d5aba33e5780c9feae911d8 (patch) | |
tree | e33eb7e3e5e14a1383c9f42033684daa5b952db9 /sys/dev/wscons | |
parent | 6132f545a66994e896da7919ab654a3a371d2fcd (diff) |
Minimalistic driver for the ImpactSR (Mardigras) video option found on older
Octane systems, as well as some Onyxes. With special permission to change a
systemwide .h file and add a manpage from deraadt@
Magic numbers and operation sequencing borrowed from Linux; tested on
Octane + ESI.
ok deraadt@
Diffstat (limited to 'sys/dev/wscons')
-rw-r--r-- | sys/dev/wscons/wsconsio.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/wscons/wsconsio.h b/sys/dev/wscons/wsconsio.h index 85b50838ac1..75bcd2c6421 100644 --- a/sys/dev/wscons/wsconsio.h +++ b/sys/dev/wscons/wsconsio.h @@ -1,4 +1,4 @@ -/* $OpenBSD: wsconsio.h,v 1.59 2010/03/04 14:31:12 jsing Exp $ */ +/* $OpenBSD: wsconsio.h,v 1.60 2010/03/07 21:26:24 miod Exp $ */ /* $NetBSD: wsconsio.h,v 1.74 2005/04/28 07:15:44 martin Exp $ */ /* @@ -313,6 +313,7 @@ struct wsmouse_calibcoords { #define WSDISPLAY_TYPE_SMFB 62 /* SiliconMotion SM712 */ #define WSDISPLAY_TYPE_SISFB 63 /* SiS 315 Pro */ #define WSDISPLAY_TYPE_ODYSSEY 64 /* SGI Odyssey */ +#define WSDISPLAY_TYPE_IMPACT 65 /* SGI Impact */ /* Basic display information. Not applicable to all display types. */ struct wsdisplay_fbinfo { |