summaryrefslogtreecommitdiff
path: root/sys/dev/sun/sunkbdvar.h
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2009-01-12 17:45:38 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2009-01-12 17:45:38 +0000
commitbd12b26d69be03f4012a9fd13ee6b8d8b8133b47 (patch)
tree6041ab6e93b628515f9dfc19945ef6aac1e988d3 /sys/dev/sun/sunkbdvar.h
parentf70f71a04a7cdf9b9c342b4ce388e7c4ef515320 (diff)
Remap the audio mute key on type 5, as it collides with the keypad equal
key on type 4.
Diffstat (limited to 'sys/dev/sun/sunkbdvar.h')
-rw-r--r--sys/dev/sun/sunkbdvar.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sun/sunkbdvar.h b/sys/dev/sun/sunkbdvar.h
index 280f4798146..79e0805484b 100644
--- a/sys/dev/sun/sunkbdvar.h
+++ b/sys/dev/sun/sunkbdvar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sunkbdvar.h,v 1.13 2009/01/11 18:59:54 miod Exp $ */
+/* $OpenBSD: sunkbdvar.h,v 1.14 2009/01/12 17:45:37 miod Exp $ */
/*
* Copyright (c) 2002 Jason L. Wright (jason@thought.net)
@@ -37,6 +37,7 @@ struct sunkbd_softc {
struct device sc_dev;
int (*sc_sendcmd)(void *, u_int8_t *, u_int);
+ void (*sc_decode)(u_int8_t, u_int *, int *);
int sc_leds; /* LED status */
int sc_id; /* keyboard type */
@@ -63,7 +64,6 @@ extern struct wskbd_accessops sunkbd_accessops;
void sunkbd_attach(struct sunkbd_softc *, struct wskbddev_attach_args *);
void sunkbd_bellstop(void *);
-void sunkbd_decode(u_int8_t, u_int *, int *);
void sunkbd_input(struct sunkbd_softc *, u_int8_t *, u_int);
void sunkbd_raw(struct sunkbd_softc *, u_int8_t);
int sunkbd_setclick(struct sunkbd_softc *, int);