diff options
-rw-r--r-- | drivers/hid/hid-ids.h | 1 | ||||
-rw-r--r-- | drivers/hid/hid-roccat-koneplus.c | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/drivers/hid/hid-ids.h b/drivers/hid/hid-ids.h index 52b27b12a4a7..71806edaad2e 100644 --- a/drivers/hid/hid-ids.h +++ b/drivers/hid/hid-ids.h | |||
@@ -674,6 +674,7 @@ | |||
674 | #define USB_DEVICE_ID_ROCCAT_ISKU 0x319c | 674 | #define USB_DEVICE_ID_ROCCAT_ISKU 0x319c |
675 | #define USB_DEVICE_ID_ROCCAT_KONE 0x2ced | 675 | #define USB_DEVICE_ID_ROCCAT_KONE 0x2ced |
676 | #define USB_DEVICE_ID_ROCCAT_KONEPLUS 0x2d51 | 676 | #define USB_DEVICE_ID_ROCCAT_KONEPLUS 0x2d51 |
677 | #define USB_DEVICE_ID_ROCCAT_KONEXTD 0x2e22 | ||
677 | #define USB_DEVICE_ID_ROCCAT_KOVAPLUS 0x2d50 | 678 | #define USB_DEVICE_ID_ROCCAT_KOVAPLUS 0x2d50 |
678 | #define USB_DEVICE_ID_ROCCAT_LUA 0x2c2e | 679 | #define USB_DEVICE_ID_ROCCAT_LUA 0x2c2e |
679 | #define USB_DEVICE_ID_ROCCAT_PYRA_WIRED 0x2c24 | 680 | #define USB_DEVICE_ID_ROCCAT_PYRA_WIRED 0x2c24 |
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"); |