created | 2021-08-31T18:21:03Z |
---|---|
begin | 2021-08-22T00:00:00Z |
end | 2021-08-23T00:00:00Z |
path | src/sys |
commits | 2 |
date | 2021-08-22T06:26:28Z | |||
---|---|---|---|---|
author | deraadt | |||
files | src/sys/arch/landisk/conf/GENERIC | log | diff | annotate |
message | ucc also fails to work here, because there is no wskbd_rawinput |
date | 2021-08-22T07:20:40Z | |||
---|---|---|---|---|
author | anton | |||
files | src/sys/dev/usb/ucc.c | log | diff | annotate |
message |
Since the raw keymap already has a capacity of holding all present keys, use it as a lookup table using the bit as the index. Removes the need to linearly scan the same keymap during handling of a key press, not that performance matters here since the length of the keymap is small but the code gets a bit simpler and one struct becomes redundant. While here, fix two incorrect conditionals in ucc_parse_hid() which compared two different quantities. |