extend search for Apple Function Key.
PR: usb/144414 Submitted by: Hans Petter Selasky
This commit is contained in:
parent
3fed7cb2bd
commit
abaa9bfe96
@ -876,16 +876,21 @@ ukbd_attach(device_t dev)
|
||||
err = usbd_req_get_hid_desc(uaa->device, NULL, &hid_ptr,
|
||||
&hid_len, M_TEMP, uaa->info.bIfaceIndex);
|
||||
if (err == 0) {
|
||||
uint8_t apple_keys = 0;
|
||||
uint8_t temp_id;
|
||||
|
||||
/* investigate if this is an Apple Keyboard */
|
||||
if (hid_locate(hid_ptr, hid_len,
|
||||
HID_USAGE2(HUP_CONSUMER, HUG_APPLE_EJECT),
|
||||
hid_input, 0, &sc->sc_loc_apple_eject, &flags,
|
||||
&sc->sc_kbd_id)) {
|
||||
&temp_id)) {
|
||||
if (flags & HIO_VARIABLE)
|
||||
sc->sc_flags |= UKBD_FLAG_APPLE_EJECT |
|
||||
UKBD_FLAG_APPLE_SWAP;
|
||||
DPRINTFN(1, "Found Apple eject-key\n");
|
||||
apple_keys = 1;
|
||||
sc->sc_kbd_id = temp_id;
|
||||
}
|
||||
if (hid_locate(hid_ptr, hid_len,
|
||||
HID_USAGE2(0xFFFF, 0x0003),
|
||||
hid_input, 0, &sc->sc_loc_apple_fn, &flags,
|
||||
@ -893,11 +898,11 @@ ukbd_attach(device_t dev)
|
||||
if (flags & HIO_VARIABLE)
|
||||
sc->sc_flags |= UKBD_FLAG_APPLE_FN |
|
||||
UKBD_FLAG_APPLE_SWAP;
|
||||
if (temp_id != sc->sc_kbd_id) {
|
||||
DPRINTF("HID IDs mismatch\n");
|
||||
DPRINTFN(1, "Found Apple FN-key\n");
|
||||
apple_keys = 1;
|
||||
sc->sc_kbd_id = temp_id;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (apple_keys == 0) {
|
||||
/*
|
||||
* Assume the first HID ID contains the
|
||||
* keyboard data
|
||||
|
Loading…
Reference in New Issue
Block a user