diff options
| author | Vladimir Kondratyev <wulf@FreeBSD.org> | 2021-08-16 20:13:24 +0000 |
|---|---|---|
| committer | Vladimir Kondratyev <wulf@FreeBSD.org> | 2021-08-16 20:13:24 +0000 |
| commit | be75951af1ec2d69d34a8701700b9bfd2a50679e (patch) | |
| tree | 90b41bc6e0d6a66e07980e63a8a07c010ce6c253 /sys/dev/hid | |
| parent | e40fec4ec9a7a6625b3e332d4f856eb1d05f0def (diff) | |
Diffstat (limited to 'sys/dev/hid')
| -rw-r--r-- | sys/dev/hid/hid.c | 1 | ||||
| -rw-r--r-- | sys/dev/hid/hid.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/hid/hid.c b/sys/dev/hid/hid.c index 699bfa4a8bb3..f201182ac20f 100644 --- a/sys/dev/hid/hid.c +++ b/sys/dev/hid/hid.c @@ -856,6 +856,7 @@ hid_item_resolution(struct hid_item *hi) divisor = 10; break; case HUM_INCH: + case HUM_INCH_EGALAX: multiplier = 10; divisor = 254; break; diff --git a/sys/dev/hid/hid.h b/sys/dev/hid/hid.h index 37ab8c9cdf7e..f0311bae689c 100644 --- a/sys/dev/hid/hid.h +++ b/sys/dev/hid/hid.h @@ -185,6 +185,7 @@ #define HUM_CENTIMETER 0x11 #define HUM_RADIAN 0x12 #define HUM_INCH 0x13 +#define HUM_INCH_EGALAX 0x33 #define HUM_DEGREE 0x14 #if defined(_KERNEL) || defined(_STANDALONE) |
