Displaying 2 results from an estimated 2 matches for "hiddata_t".
Did you mean:
hiddata
2018 Feb 15
2
[PATCH 1/3] Skip non-feature HID reports
On Feb 3, 2018, at 7:19 PM, Russell King wrote:
>
> Input and Output reports are used for interrupt endpoints rather than
> control endpoints. HIDGetItemData() only ever requests feature
> report IDs, and requesting non-feature report IDs as feature IDs may
> lead to undesirable results and errors.
This one made me scratch my head a bit.
I don't think it's unreasonable
2007 Aug 23
1
[nut-commits] svn commit r1073 - in trunk: . drivers
...& HU_FLAG_ABSENT) {
> @@ -1018,23 +1042,30 @@
> continue;
> }
>
> + /* Apparently, we are reconnecting, so
> + * NUT-to-HID translation is still good */
> + if (item->hiddata != NULL)
> + break;
> +
> /* Get pointer to the corresponding HIDData_t item */
> item->hiddata = HIDGetItemData(udev, item->hidpath, subdriver->utab);
> -
> if (item->hiddata == NULL)
> continue;
>
> - /* Avoid redundancy when multiple defines (RO/RW)
> - * ups.status and ups.alarm is not set during
> - HU_W...