diff options
author | Stefan Achatz <erazor_de@users.sourceforge.net> | 2012-11-04 03:38:52 -0500 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2012-11-05 07:17:38 -0500 |
commit | 8e74a2d31b980c2b2dc43641e5bb232c7cc3df4c (patch) | |
tree | 1ef9a4f935a36b513f8d46056f1dd7318cf10749 /drivers/hid/hid-roccat-koneplus.c | |
parent | 5277e97c2474a85eb0325ac6fff71910a4e6c134 (diff) |
HID: roccat: add support for KoneXTD
KoneXTD is just a Kone[+] with updated sensor, so it's handled by
koneplus driver.
Signed-off-by: Stefan Achatz <erazor_de@users.sourceforge.net>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/hid-roccat-koneplus.c')
-rw-r--r-- | drivers/hid/hid-roccat-koneplus.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/hid/hid-roccat-koneplus.c b/drivers/hid/hid-roccat-koneplus.c index c47540a5d4f3..0df408362ef1 100644 --- a/drivers/hid/hid-roccat-koneplus.c +++ b/drivers/hid/hid-roccat-koneplus.c | |||
@@ -14,6 +14,7 @@ | |||
14 | /* | 14 | /* |
15 | * Roccat Kone[+] is an updated/improved version of the Kone with more memory | 15 | * Roccat Kone[+] is an updated/improved version of the Kone with more memory |
16 | * and functionality and without the non-standard behaviours the Kone had. | 16 | * and functionality and without the non-standard behaviours the Kone had. |
17 | * KoneXTD has same capabilities but updated sensor. | ||
17 | */ | 18 | */ |
18 | 19 | ||
19 | #include <linux/device.h> | 20 | #include <linux/device.h> |
@@ -718,6 +719,7 @@ static int koneplus_raw_event(struct hid_device *hdev, | |||
718 | 719 | ||
719 | static const struct hid_device_id koneplus_devices[] = { | 720 | static const struct hid_device_id koneplus_devices[] = { |
720 | { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_KONEPLUS) }, | 721 | { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_KONEPLUS) }, |
722 | { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_KONEXTD) }, | ||
721 | { } | 723 | { } |
722 | }; | 724 | }; |
723 | 725 | ||
@@ -758,5 +760,5 @@ module_init(koneplus_init); | |||
758 | module_exit(koneplus_exit); | 760 | module_exit(koneplus_exit); |
759 | 761 | ||
760 | MODULE_AUTHOR("Stefan Achatz"); | 762 | MODULE_AUTHOR("Stefan Achatz"); |
761 | MODULE_DESCRIPTION("USB Roccat Kone[+] driver"); | 763 | MODULE_DESCRIPTION("USB Roccat Kone[+]/XTD driver"); |
762 | MODULE_LICENSE("GPL v2"); | 764 | MODULE_LICENSE("GPL v2"); |