USB HID: Fix Usage Maximum typo

Fix typo preventing 'Usage Maximum' values from being parsed.
Values were were reported as 'Usage:'.
This commit is contained in:
Berk Akinci 2021-08-27 18:34:22 -04:00 committed by Tomasz Moń
parent 64a76cca7f
commit 0ba0d4e779
1 changed files with 2 additions and 4 deletions

View File

@ -70,7 +70,7 @@ static int hf_usb_hid_globalitem_pop = -1;
static int hf_usb_hid_localitem_usage = -1;
static int hf_usb_hid_localitem_usage_min = -1;
/* static int hf_usb_hid_localitem_usage_max = -1; */
static int hf_usb_hid_localitem_usage_max = -1;
static int hf_usb_hid_localitem_desig_index = -1;
static int hf_usb_hid_localitem_desig_min = -1;
static int hf_usb_hid_localitem_desig_max = -1;
@ -4241,7 +4241,7 @@ dissect_usb_hid_report_localitem_data(packet_info *pinfo, proto_tree *tree, tvbu
proto_item_append_text(ti, " (0x%02x)", val);
break;
case USBHID_LOCALITEM_TAG_USAGE_MAX:
proto_tree_add_item_ret_uint(tree, hf_usb_hid_localitem_usage, tvb, offset, bSize, ENC_LITTLE_ENDIAN, &val);
proto_tree_add_item_ret_uint(tree, hf_usb_hid_localitem_usage_max, tvb, offset, bSize, ENC_LITTLE_ENDIAN, &val);
proto_item_append_text(ti, " (0x%02x)", val);
break;
case USBHID_LOCALITEM_TAG_DESIG_INDEX:
@ -5544,11 +5544,9 @@ proto_register_usb_hid(void)
{ "Usage minimum", "usbhid.item.local.usage_min", FT_UINT8, BASE_HEX,
NULL, 0, NULL, HFILL }},
#if 0
{ &hf_usb_hid_localitem_usage_max,
{ "Usage maximum", "usbhid.item.local.usage_max", FT_UINT8, BASE_HEX,
NULL, 0, NULL, HFILL }},
#endif
{ &hf_usb_hid_localitem_desig_index,
{ "Designator index", "usbhid.item.local.desig_index", FT_UINT8, BASE_HEX,