summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorDale Rahn <drahn@cvs.openbsd.org>2001-01-28 21:14:09 +0000
committerDale Rahn <drahn@cvs.openbsd.org>2001-01-28 21:14:09 +0000
commit74ef1fd4952896c6a75e076b131f3478378d9b37 (patch)
tree7d453ce49321abd3cd198bcd7a63642a84230758 /sys/dev
parent7f4fe63e3890b5885a9c5e57ee5207cf6b053630 (diff)
Fix callout/timeout difference that did not quite get merged correctly.
Uses were correct, just definition did not get moved appropriately.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/usb/ukbd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/ukbd.c b/sys/dev/usb/ukbd.c
index c37773136f3..5e795eb0d06 100644
--- a/sys/dev/usb/ukbd.c
+++ b/sys/dev/usb/ukbd.c
@@ -186,14 +186,15 @@ struct ukbd_softc {
int sc_console_keyboard; /* we are the console keyboard */
char sc_debounce; /* for quirk handling */
- struct callout sc_delay; /* for quirk handling */
struct ukbd_data sc_data; /* for quirk handling */
int sc_leds;
#if defined(__OpenBSD__)
+ struct timeout sc_delay; /* for quirk handling */
struct timeout sc_rawrepeat_ch;
#else
+ struct callout sc_delay; /* for quirk handling */
struct callout sc_rawrepeat_ch;
#endif