summaryrefslogtreecommitdiff
path: root/sys/dev/usb/ukbd.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/usb/ukbd.c')
-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