svn commit: r205804 - head/sys/dev/usb/input
Andrew Thompson
thompsa at FreeBSD.org
Sun Mar 28 20:07:09 UTC 2010
Author: thompsa
Date: Sun Mar 28 20:07:08 2010
New Revision: 205804
URL: http://svn.freebsd.org/changeset/base/205804
Log:
Do not swap Apple keys when detecting Apple-FN keyboards.
Reported by: Steven Noonan
Submitted by: Hans Petter Selasky
Modified:
head/sys/dev/usb/input/ukbd.c
Modified: head/sys/dev/usb/input/ukbd.c
==============================================================================
--- head/sys/dev/usb/input/ukbd.c Sun Mar 28 20:04:03 2010 (r205803)
+++ head/sys/dev/usb/input/ukbd.c Sun Mar 28 20:07:08 2010 (r205804)
@@ -896,8 +896,7 @@ ukbd_attach(device_t dev)
hid_input, 0, &sc->sc_loc_apple_fn, &flags,
&temp_id)) {
if (flags & HIO_VARIABLE)
- sc->sc_flags |= UKBD_FLAG_APPLE_FN |
- UKBD_FLAG_APPLE_SWAP;
+ sc->sc_flags |= UKBD_FLAG_APPLE_FN;
DPRINTFN(1, "Found Apple FN-key\n");
apple_keys = 1;
sc->sc_kbd_id = temp_id;
More information about the svn-src-all
mailing list