diff options
author | Mika Westerberg <[email protected]> | 2015-09-28 17:22:17 +0300 |
---|---|---|
committer | Jiri Kosina <[email protected]> | 2015-09-29 12:08:17 +0200 |
commit | dc425a1c8c02b45fbab8b3ba522649d238cf84db (patch) | |
tree | 21db563d7dbc86ae6a5e746a6603ea7f4c66c015 | |
parent | 851328feb8c1d4130d3a0acb004e474168702d6d (diff) |
HID: multitouch: Add suffix for HID_DG_TOUCHPAD
Instead of printing "UNKNOWN" as device suffix for HID_DG_TOUCHPAD call
the device as "Touchpad".
Signed-off-by: Mika Westerberg <[email protected]>
Acked-by: Benjamin Tissoires <[email protected]>
Reviewed-by: Daniel Martin <[email protected]>
Signed-off-by: Jiri Kosina <[email protected]>
-rw-r--r-- | drivers/hid/hid-multitouch.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/hid/hid-multitouch.c b/drivers/hid/hid-multitouch.c index 426b2f1a3450..661b4fce1a5d 100644 --- a/drivers/hid/hid-multitouch.c +++ b/drivers/hid/hid-multitouch.c @@ -968,6 +968,9 @@ static void mt_input_configured(struct hid_device *hdev, struct hid_input *hi) case HID_DG_TOUCHSCREEN: /* we do not set suffix = "Touchscreen" */ break; + case HID_DG_TOUCHPAD: + suffix = "Touchpad"; + break; case HID_GD_SYSTEM_CONTROL: suffix = "System Control"; break; |