CVSROOT: /cvs Module name: src Changes by: b...@cvs.openbsd.org 2025/07/15 14:27:59
Modified files: sys/dev/hid : hidmt.c Log message: hidmt: separate contact inputs correctly When processing input reports, hidmt_input identifies groups of contact- level items by checking for the repetition of an item type - the first type it has encountered in the report. This fails for reports starting with report-level items, which only occur once. The 'firstu' value must not be set to a report-level type. Thanks to Thomas Dettbarn for analyzing and reporting the problem. ok stsp@