Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Stefan Achatz and committed by
Jiri Kosina
8e74a2d3 5277e97c

+4 -1
+1
drivers/hid/hid-ids.h
··· 674 674 #define USB_DEVICE_ID_ROCCAT_ISKU 0x319c 675 675 #define USB_DEVICE_ID_ROCCAT_KONE 0x2ced 676 676 #define USB_DEVICE_ID_ROCCAT_KONEPLUS 0x2d51 677 + #define USB_DEVICE_ID_ROCCAT_KONEXTD 0x2e22 677 678 #define USB_DEVICE_ID_ROCCAT_KOVAPLUS 0x2d50 678 679 #define USB_DEVICE_ID_ROCCAT_LUA 0x2c2e 679 680 #define USB_DEVICE_ID_ROCCAT_PYRA_WIRED 0x2c24
+3 -1
drivers/hid/hid-roccat-koneplus.c
··· 14 14 /* 15 15 * Roccat Kone[+] is an updated/improved version of the Kone with more memory 16 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 20 #include <linux/device.h> ··· 719 718 720 719 static const struct hid_device_id koneplus_devices[] = { 721 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_KONEXTD) }, 722 722 { } 723 723 }; 724 724 ··· 760 758 module_exit(koneplus_exit); 761 759 762 760 MODULE_AUTHOR("Stefan Achatz"); 763 - MODULE_DESCRIPTION("USB Roccat Kone[+] driver"); 761 + MODULE_DESCRIPTION("USB Roccat Kone[+]/XTD driver"); 764 762 MODULE_LICENSE("GPL v2");