Deleted Added
full compact
ukbd.c (199169) ukbd.c (199675)
1#include <sys/cdefs.h>
1#include <sys/cdefs.h>
2__FBSDID("$FreeBSD: head/sys/dev/usb/input/ukbd.c 199169 2009-11-11 03:17:51Z nwhitehorn $");
2__FBSDID("$FreeBSD: head/sys/dev/usb/input/ukbd.c 199675 2009-11-22 21:21:22Z thompsa $");
3
4
5/*-
6 * Copyright (c) 1998 The NetBSD Foundation, Inc.
7 * All rights reserved.
8 *
9 * This code is derived from software contributed to The NetBSD Foundation
10 * by Lennart Augustsson (lennart@augustsson.net) at

--- 89 unchanged lines hidden (view full) ---

100static int ukbd_no_leds = 0;
101
102SYSCTL_NODE(_hw_usb, OID_AUTO, ukbd, CTLFLAG_RW, 0, "USB ukbd");
103SYSCTL_INT(_hw_usb_ukbd, OID_AUTO, debug, CTLFLAG_RW,
104 &ukbd_debug, 0, "Debug level");
105SYSCTL_INT(_hw_usb_ukbd, OID_AUTO, no_leds, CTLFLAG_RW,
106 &ukbd_no_leds, 0, "Disables setting of keyboard leds");
107
3
4
5/*-
6 * Copyright (c) 1998 The NetBSD Foundation, Inc.
7 * All rights reserved.
8 *
9 * This code is derived from software contributed to The NetBSD Foundation
10 * by Lennart Augustsson (lennart@augustsson.net) at

--- 89 unchanged lines hidden (view full) ---

100static int ukbd_no_leds = 0;
101
102SYSCTL_NODE(_hw_usb, OID_AUTO, ukbd, CTLFLAG_RW, 0, "USB ukbd");
103SYSCTL_INT(_hw_usb_ukbd, OID_AUTO, debug, CTLFLAG_RW,
104 &ukbd_debug, 0, "Debug level");
105SYSCTL_INT(_hw_usb_ukbd, OID_AUTO, no_leds, CTLFLAG_RW,
106 &ukbd_no_leds, 0, "Disables setting of keyboard leds");
107
108TUNABLE_INT("hw.usb.ukbd.debug", &ukbd_debug);
109TUNABLE_INT("hw.usb.ukbd.no_leds", &ukbd_no_leds);
108#endif
109
110#define UPROTO_BOOT_KEYBOARD 1
111
112#define UKBD_EMULATE_ATSCANCODE 1
113#define UKBD_DRIVER_NAME "ukbd"
114#define UKBD_NMOD 8 /* units */
115#define UKBD_NKEYCODE 6 /* units */

--- 1667 unchanged lines hidden ---
110#endif
111
112#define UPROTO_BOOT_KEYBOARD 1
113
114#define UKBD_EMULATE_ATSCANCODE 1
115#define UKBD_DRIVER_NAME "ukbd"
116#define UKBD_NMOD 8 /* units */
117#define UKBD_NKEYCODE 6 /* units */

--- 1667 unchanged lines hidden ---