From ed5b720b202bee0e5c788aa80790cb31b4a3c508 Mon Sep 17 00:00:00 2001 From: Kai Wang Date: Mon, 18 Aug 2008 17:05:59 +0000 Subject: [PATCH] Fix a typo: According to the hid spec, Global item #3 is Physical Minimum. MFC after: 3 days --- sys/dev/usb/hid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/usb/hid.c b/sys/dev/usb/hid.c index b4f0cb50612..70facb61629 100644 --- a/sys/dev/usb/hid.c +++ b/sys/dev/usb/hid.c @@ -275,7 +275,7 @@ hid_get_item(struct hid_data *s, struct hid_item *h) c->logical_maximum = dval; break; case 3: - c->physical_maximum = dval; + c->physical_minimum = dval; break; case 4: c->physical_maximum = dval;