diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-04-22 11:59:12 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-04-22 11:59:12 +0000 |
commit | 45d66f70648de09cb68227f7bc36df4b3c144a6d (patch) | |
tree | 6b3e10f3990bb400d467dcadb21cf4f03b7aa764 /sys/dev | |
parent | 2859385583ab340f0cbf668de9bb48e8553d3e76 (diff) |
Driver for the Apollo Domain keyboard and mouse, for the HP 9000/4xx series.
Claims the console keyboard if a keyboard is detected at boot time,
otherwise HIL is preferred (but due to wsmux both can be used simultaneously).
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/wscons/wsconsio.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/wscons/wsconsio.h b/sys/dev/wscons/wsconsio.h index 95f4cdc7fb4..f72ec904c47 100644 --- a/sys/dev/wscons/wsconsio.h +++ b/sys/dev/wscons/wsconsio.h @@ -1,4 +1,4 @@ -/* $OpenBSD: wsconsio.h,v 1.34 2005/01/17 04:19:40 drahn Exp $ */ +/* $OpenBSD: wsconsio.h,v 1.35 2005/04/22 11:59:11 miod Exp $ */ /* $NetBSD: wsconsio.h,v 1.31.2.1 2000/07/07 09:49:17 hannken Exp $ */ /* @@ -115,6 +115,7 @@ struct wscons_event { #define WSKBD_TYPE_GSC 14 /* HP PS/2 */ #define WSKBD_TYPE_LUNA 15 /* OMRON Luna */ #define WSKBD_TYPE_ZAURUS 16 /* Sharp Zaurus */ +#define WSKBD_TYPE_DOMAIN 17 /* Apollo Domain */ /* Manipulate the keyboard bell. */ struct wskbd_bell_data { @@ -195,6 +196,7 @@ struct wskbd_map_data { #define WSMOUSE_TYPE_ADB 9 /* ADB */ #define WSMOUSE_TYPE_HIL 10 /* HP HIL */ #define WSMOUSE_TYPE_LUNA 11 /* OMRON Luna */ +#define WSMOUSE_TYPE_DOMAIN 12 /* Apollo Domain */ /* Set resolution. Not applicable to all mouse types. */ #define WSMOUSEIO_SRES _IOW('W', 33, u_int) |