Extend the comment explaining the condition for discarding out-of-range values to clarify the cases in which devices don't provide any logical min/max.
···1042104210431043 /*10441044 * Ignore out-of-range values as per HID specification,10451045- * section 5.10 and 6.2.2510451045+ * section 5.10 and 6.2.25.10461046+ *10471047+ * The logical_minimum < logical_maximum check is done so that we10481048+ * don't unintentionally discard values sent by devices which10491049+ * don't specify logical min and max.10461050 */10471051 if ((field->flags & HID_MAIN_ITEM_VARIABLE) &&10481052 (field->logical_minimum < field->logical_maximum) &&