2 * Roccat Kova[+] driver for Linux
4 * Copyright (c) 2011 Stefan Achatz <erazor_de@users.sourceforge.net>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the Free
10 * Software Foundation; either version 2 of the License, or (at your option)
15 * Roccat Kova[+] is a bigger version of the Pyra with two more side buttons.
18 #include <linux/device.h>
19 #include <linux/input.h>
20 #include <linux/hid.h>
21 #include <linux/module.h>
22 #include <linux/slab.h>
23 #include <linux/hid-roccat.h>
25 #include "hid-roccat-common.h"
26 #include "hid-roccat-kovaplus.h"
28 static uint profile_numbers
[5] = {0, 1, 2, 3, 4};
30 static struct class *kovaplus_class
;
32 static uint
kovaplus_convert_event_cpi(uint value
)
34 return (value
== 7 ? 4 : (value
== 4 ? 3 : value
));
37 static void kovaplus_profile_activated(struct kovaplus_device
*kovaplus
,
38 uint new_profile_index
)
40 kovaplus
->actual_profile
= new_profile_index
;
41 kovaplus
->actual_cpi
= kovaplus
->profile_settings
[new_profile_index
].cpi_startup_level
;
42 kovaplus
->actual_x_sensitivity
= kovaplus
->profile_settings
[new_profile_index
].sensitivity_x
;
43 kovaplus
->actual_y_sensitivity
= kovaplus
->profile_settings
[new_profile_index
].sensitivity_y
;
46 static int kovaplus_send_control(struct usb_device
*usb_dev
, uint value
,
47 enum kovaplus_control_requests request
)
50 struct roccat_common2_control control
;
52 if ((request
== KOVAPLUS_CONTROL_REQUEST_PROFILE_SETTINGS
||
53 request
== KOVAPLUS_CONTROL_REQUEST_PROFILE_BUTTONS
) &&
57 control
.command
= ROCCAT_COMMON_COMMAND_CONTROL
;
58 control
.value
= value
;
59 control
.request
= request
;
61 retval
= roccat_common2_send(usb_dev
, ROCCAT_COMMON_COMMAND_CONTROL
,
62 &control
, sizeof(struct roccat_common2_control
));
67 static int kovaplus_select_profile(struct usb_device
*usb_dev
, uint number
,
68 enum kovaplus_control_requests request
)
70 return kovaplus_send_control(usb_dev
, number
, request
);
73 static int kovaplus_get_profile_settings(struct usb_device
*usb_dev
,
74 struct kovaplus_profile_settings
*buf
, uint number
)
78 retval
= kovaplus_select_profile(usb_dev
, number
,
79 KOVAPLUS_CONTROL_REQUEST_PROFILE_SETTINGS
);
83 return roccat_common2_receive(usb_dev
, KOVAPLUS_COMMAND_PROFILE_SETTINGS
,
84 buf
, KOVAPLUS_SIZE_PROFILE_SETTINGS
);
87 static int kovaplus_get_profile_buttons(struct usb_device
*usb_dev
,
88 struct kovaplus_profile_buttons
*buf
, int number
)
92 retval
= kovaplus_select_profile(usb_dev
, number
,
93 KOVAPLUS_CONTROL_REQUEST_PROFILE_BUTTONS
);
97 return roccat_common2_receive(usb_dev
, KOVAPLUS_COMMAND_PROFILE_BUTTONS
,
98 buf
, KOVAPLUS_SIZE_PROFILE_BUTTONS
);
101 /* retval is 0-4 on success, < 0 on error */
102 static int kovaplus_get_actual_profile(struct usb_device
*usb_dev
)
104 struct kovaplus_actual_profile buf
;
107 retval
= roccat_common2_receive(usb_dev
, KOVAPLUS_COMMAND_ACTUAL_PROFILE
,
108 &buf
, sizeof(struct kovaplus_actual_profile
));
110 return retval
? retval
: buf
.actual_profile
;
113 static int kovaplus_set_actual_profile(struct usb_device
*usb_dev
,
116 struct kovaplus_actual_profile buf
;
118 buf
.command
= KOVAPLUS_COMMAND_ACTUAL_PROFILE
;
119 buf
.size
= sizeof(struct kovaplus_actual_profile
);
120 buf
.actual_profile
= new_profile
;
122 return roccat_common2_send_with_status(usb_dev
,
123 KOVAPLUS_COMMAND_ACTUAL_PROFILE
,
124 &buf
, sizeof(struct kovaplus_actual_profile
));
127 static ssize_t
kovaplus_sysfs_read(struct file
*fp
, struct kobject
*kobj
,
128 char *buf
, loff_t off
, size_t count
,
129 size_t real_size
, uint command
)
132 container_of(kobj
, struct device
, kobj
)->parent
->parent
;
133 struct kovaplus_device
*kovaplus
= hid_get_drvdata(dev_get_drvdata(dev
));
134 struct usb_device
*usb_dev
= interface_to_usbdev(to_usb_interface(dev
));
137 if (off
>= real_size
)
140 if (off
!= 0 || count
!= real_size
)
143 mutex_lock(&kovaplus
->kovaplus_lock
);
144 retval
= roccat_common2_receive(usb_dev
, command
, buf
, real_size
);
145 mutex_unlock(&kovaplus
->kovaplus_lock
);
153 static ssize_t
kovaplus_sysfs_write(struct file
*fp
, struct kobject
*kobj
,
154 void const *buf
, loff_t off
, size_t count
,
155 size_t real_size
, uint command
)
158 container_of(kobj
, struct device
, kobj
)->parent
->parent
;
159 struct kovaplus_device
*kovaplus
= hid_get_drvdata(dev_get_drvdata(dev
));
160 struct usb_device
*usb_dev
= interface_to_usbdev(to_usb_interface(dev
));
163 if (off
!= 0 || count
!= real_size
)
166 mutex_lock(&kovaplus
->kovaplus_lock
);
167 retval
= roccat_common2_send_with_status(usb_dev
, command
,
169 mutex_unlock(&kovaplus
->kovaplus_lock
);
177 #define KOVAPLUS_SYSFS_W(thingy, THINGY) \
178 static ssize_t kovaplus_sysfs_write_ ## thingy(struct file *fp, \
179 struct kobject *kobj, struct bin_attribute *attr, char *buf, \
180 loff_t off, size_t count) \
182 return kovaplus_sysfs_write(fp, kobj, buf, off, count, \
183 KOVAPLUS_SIZE_ ## THINGY, KOVAPLUS_COMMAND_ ## THINGY); \
186 #define KOVAPLUS_SYSFS_R(thingy, THINGY) \
187 static ssize_t kovaplus_sysfs_read_ ## thingy(struct file *fp, \
188 struct kobject *kobj, struct bin_attribute *attr, char *buf, \
189 loff_t off, size_t count) \
191 return kovaplus_sysfs_read(fp, kobj, buf, off, count, \
192 KOVAPLUS_SIZE_ ## THINGY, KOVAPLUS_COMMAND_ ## THINGY); \
195 #define KOVAPLUS_SYSFS_RW(thingy, THINGY) \
196 KOVAPLUS_SYSFS_W(thingy, THINGY) \
197 KOVAPLUS_SYSFS_R(thingy, THINGY)
199 #define KOVAPLUS_BIN_ATTRIBUTE_RW(thingy, THINGY) \
201 .attr = { .name = #thingy, .mode = 0660 }, \
202 .size = KOVAPLUS_SIZE_ ## THINGY, \
203 .read = kovaplus_sysfs_read_ ## thingy, \
204 .write = kovaplus_sysfs_write_ ## thingy \
207 #define KOVAPLUS_BIN_ATTRIBUTE_R(thingy, THINGY) \
209 .attr = { .name = #thingy, .mode = 0440 }, \
210 .size = KOVAPLUS_SIZE_ ## THINGY, \
211 .read = kovaplus_sysfs_read_ ## thingy, \
214 #define KOVAPLUS_BIN_ATTRIBUTE_W(thingy, THINGY) \
216 .attr = { .name = #thingy, .mode = 0220 }, \
217 .size = KOVAPLUS_SIZE_ ## THINGY, \
218 .write = kovaplus_sysfs_write_ ## thingy \
221 KOVAPLUS_SYSFS_W(control
, CONTROL
)
222 KOVAPLUS_SYSFS_RW(info
, INFO
)
223 KOVAPLUS_SYSFS_RW(profile_settings
, PROFILE_SETTINGS
)
224 KOVAPLUS_SYSFS_RW(profile_buttons
, PROFILE_BUTTONS
)
226 static ssize_t
kovaplus_sysfs_read_profilex_settings(struct file
*fp
,
227 struct kobject
*kobj
, struct bin_attribute
*attr
, char *buf
,
228 loff_t off
, size_t count
)
231 container_of(kobj
, struct device
, kobj
)->parent
->parent
;
232 struct usb_device
*usb_dev
= interface_to_usbdev(to_usb_interface(dev
));
235 retval
= kovaplus_select_profile(usb_dev
, *(uint
*)(attr
->private),
236 KOVAPLUS_CONTROL_REQUEST_PROFILE_SETTINGS
);
240 return kovaplus_sysfs_read(fp
, kobj
, buf
, off
, count
,
241 KOVAPLUS_SIZE_PROFILE_SETTINGS
,
242 KOVAPLUS_COMMAND_PROFILE_SETTINGS
);
245 static ssize_t
kovaplus_sysfs_read_profilex_buttons(struct file
*fp
,
246 struct kobject
*kobj
, struct bin_attribute
*attr
, char *buf
,
247 loff_t off
, size_t count
)
250 container_of(kobj
, struct device
, kobj
)->parent
->parent
;
251 struct usb_device
*usb_dev
= interface_to_usbdev(to_usb_interface(dev
));
254 retval
= kovaplus_select_profile(usb_dev
, *(uint
*)(attr
->private),
255 KOVAPLUS_CONTROL_REQUEST_PROFILE_BUTTONS
);
259 return kovaplus_sysfs_read(fp
, kobj
, buf
, off
, count
,
260 KOVAPLUS_SIZE_PROFILE_BUTTONS
,
261 KOVAPLUS_COMMAND_PROFILE_BUTTONS
);
264 static ssize_t
kovaplus_sysfs_show_actual_profile(struct device
*dev
,
265 struct device_attribute
*attr
, char *buf
)
267 struct kovaplus_device
*kovaplus
=
268 hid_get_drvdata(dev_get_drvdata(dev
->parent
->parent
));
269 return snprintf(buf
, PAGE_SIZE
, "%d\n", kovaplus
->actual_profile
);
272 static ssize_t
kovaplus_sysfs_set_actual_profile(struct device
*dev
,
273 struct device_attribute
*attr
, char const *buf
, size_t size
)
275 struct kovaplus_device
*kovaplus
;
276 struct usb_device
*usb_dev
;
277 unsigned long profile
;
279 struct kovaplus_roccat_report roccat_report
;
281 dev
= dev
->parent
->parent
;
282 kovaplus
= hid_get_drvdata(dev_get_drvdata(dev
));
283 usb_dev
= interface_to_usbdev(to_usb_interface(dev
));
285 retval
= strict_strtoul(buf
, 10, &profile
);
292 mutex_lock(&kovaplus
->kovaplus_lock
);
293 retval
= kovaplus_set_actual_profile(usb_dev
, profile
);
295 mutex_unlock(&kovaplus
->kovaplus_lock
);
299 kovaplus_profile_activated(kovaplus
, profile
);
301 roccat_report
.type
= KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_PROFILE_1
;
302 roccat_report
.profile
= profile
+ 1;
303 roccat_report
.button
= 0;
304 roccat_report
.data1
= profile
+ 1;
305 roccat_report
.data2
= 0;
306 roccat_report_event(kovaplus
->chrdev_minor
,
307 (uint8_t const *)&roccat_report
);
309 mutex_unlock(&kovaplus
->kovaplus_lock
);
314 static ssize_t
kovaplus_sysfs_show_actual_cpi(struct device
*dev
,
315 struct device_attribute
*attr
, char *buf
)
317 struct kovaplus_device
*kovaplus
=
318 hid_get_drvdata(dev_get_drvdata(dev
->parent
->parent
));
319 return snprintf(buf
, PAGE_SIZE
, "%d\n", kovaplus
->actual_cpi
);
322 static ssize_t
kovaplus_sysfs_show_actual_sensitivity_x(struct device
*dev
,
323 struct device_attribute
*attr
, char *buf
)
325 struct kovaplus_device
*kovaplus
=
326 hid_get_drvdata(dev_get_drvdata(dev
->parent
->parent
));
327 return snprintf(buf
, PAGE_SIZE
, "%d\n", kovaplus
->actual_x_sensitivity
);
330 static ssize_t
kovaplus_sysfs_show_actual_sensitivity_y(struct device
*dev
,
331 struct device_attribute
*attr
, char *buf
)
333 struct kovaplus_device
*kovaplus
=
334 hid_get_drvdata(dev_get_drvdata(dev
->parent
->parent
));
335 return snprintf(buf
, PAGE_SIZE
, "%d\n", kovaplus
->actual_y_sensitivity
);
338 static ssize_t
kovaplus_sysfs_show_firmware_version(struct device
*dev
,
339 struct device_attribute
*attr
, char *buf
)
341 struct kovaplus_device
*kovaplus
;
342 struct usb_device
*usb_dev
;
343 struct kovaplus_info info
;
345 dev
= dev
->parent
->parent
;
346 kovaplus
= hid_get_drvdata(dev_get_drvdata(dev
));
347 usb_dev
= interface_to_usbdev(to_usb_interface(dev
));
349 mutex_lock(&kovaplus
->kovaplus_lock
);
350 roccat_common2_receive(usb_dev
, KOVAPLUS_COMMAND_INFO
,
351 &info
, KOVAPLUS_SIZE_INFO
);
352 mutex_unlock(&kovaplus
->kovaplus_lock
);
354 return snprintf(buf
, PAGE_SIZE
, "%d\n", info
.firmware_version
);
357 static struct device_attribute kovaplus_attributes
[] = {
358 __ATTR(actual_cpi
, 0440,
359 kovaplus_sysfs_show_actual_cpi
, NULL
),
360 __ATTR(firmware_version
, 0440,
361 kovaplus_sysfs_show_firmware_version
, NULL
),
362 __ATTR(actual_profile
, 0660,
363 kovaplus_sysfs_show_actual_profile
,
364 kovaplus_sysfs_set_actual_profile
),
365 __ATTR(actual_sensitivity_x
, 0440,
366 kovaplus_sysfs_show_actual_sensitivity_x
, NULL
),
367 __ATTR(actual_sensitivity_y
, 0440,
368 kovaplus_sysfs_show_actual_sensitivity_y
, NULL
),
372 static struct bin_attribute kovaplus_bin_attributes
[] = {
373 KOVAPLUS_BIN_ATTRIBUTE_W(control
, CONTROL
),
374 KOVAPLUS_BIN_ATTRIBUTE_RW(info
, INFO
),
375 KOVAPLUS_BIN_ATTRIBUTE_RW(profile_settings
, PROFILE_SETTINGS
),
376 KOVAPLUS_BIN_ATTRIBUTE_RW(profile_buttons
, PROFILE_BUTTONS
),
378 .attr
= { .name
= "profile1_settings", .mode
= 0440 },
379 .size
= KOVAPLUS_SIZE_PROFILE_SETTINGS
,
380 .read
= kovaplus_sysfs_read_profilex_settings
,
381 .private = &profile_numbers
[0]
384 .attr
= { .name
= "profile2_settings", .mode
= 0440 },
385 .size
= KOVAPLUS_SIZE_PROFILE_SETTINGS
,
386 .read
= kovaplus_sysfs_read_profilex_settings
,
387 .private = &profile_numbers
[1]
390 .attr
= { .name
= "profile3_settings", .mode
= 0440 },
391 .size
= KOVAPLUS_SIZE_PROFILE_SETTINGS
,
392 .read
= kovaplus_sysfs_read_profilex_settings
,
393 .private = &profile_numbers
[2]
396 .attr
= { .name
= "profile4_settings", .mode
= 0440 },
397 .size
= KOVAPLUS_SIZE_PROFILE_SETTINGS
,
398 .read
= kovaplus_sysfs_read_profilex_settings
,
399 .private = &profile_numbers
[3]
402 .attr
= { .name
= "profile5_settings", .mode
= 0440 },
403 .size
= KOVAPLUS_SIZE_PROFILE_SETTINGS
,
404 .read
= kovaplus_sysfs_read_profilex_settings
,
405 .private = &profile_numbers
[4]
408 .attr
= { .name
= "profile1_buttons", .mode
= 0440 },
409 .size
= KOVAPLUS_SIZE_PROFILE_BUTTONS
,
410 .read
= kovaplus_sysfs_read_profilex_buttons
,
411 .private = &profile_numbers
[0]
414 .attr
= { .name
= "profile2_buttons", .mode
= 0440 },
415 .size
= KOVAPLUS_SIZE_PROFILE_BUTTONS
,
416 .read
= kovaplus_sysfs_read_profilex_buttons
,
417 .private = &profile_numbers
[1]
420 .attr
= { .name
= "profile3_buttons", .mode
= 0440 },
421 .size
= KOVAPLUS_SIZE_PROFILE_BUTTONS
,
422 .read
= kovaplus_sysfs_read_profilex_buttons
,
423 .private = &profile_numbers
[2]
426 .attr
= { .name
= "profile4_buttons", .mode
= 0440 },
427 .size
= KOVAPLUS_SIZE_PROFILE_BUTTONS
,
428 .read
= kovaplus_sysfs_read_profilex_buttons
,
429 .private = &profile_numbers
[3]
432 .attr
= { .name
= "profile5_buttons", .mode
= 0440 },
433 .size
= KOVAPLUS_SIZE_PROFILE_BUTTONS
,
434 .read
= kovaplus_sysfs_read_profilex_buttons
,
435 .private = &profile_numbers
[4]
440 static int kovaplus_init_kovaplus_device_struct(struct usb_device
*usb_dev
,
441 struct kovaplus_device
*kovaplus
)
444 static uint wait
= 70; /* device will freeze with just 60 */
446 mutex_init(&kovaplus
->kovaplus_lock
);
448 for (i
= 0; i
< 5; ++i
) {
450 retval
= kovaplus_get_profile_settings(usb_dev
,
451 &kovaplus
->profile_settings
[i
], i
);
456 retval
= kovaplus_get_profile_buttons(usb_dev
,
457 &kovaplus
->profile_buttons
[i
], i
);
463 retval
= kovaplus_get_actual_profile(usb_dev
);
466 kovaplus_profile_activated(kovaplus
, retval
);
471 static int kovaplus_init_specials(struct hid_device
*hdev
)
473 struct usb_interface
*intf
= to_usb_interface(hdev
->dev
.parent
);
474 struct usb_device
*usb_dev
= interface_to_usbdev(intf
);
475 struct kovaplus_device
*kovaplus
;
478 if (intf
->cur_altsetting
->desc
.bInterfaceProtocol
479 == USB_INTERFACE_PROTOCOL_MOUSE
) {
481 kovaplus
= kzalloc(sizeof(*kovaplus
), GFP_KERNEL
);
483 hid_err(hdev
, "can't alloc device descriptor\n");
486 hid_set_drvdata(hdev
, kovaplus
);
488 retval
= kovaplus_init_kovaplus_device_struct(usb_dev
, kovaplus
);
490 hid_err(hdev
, "couldn't init struct kovaplus_device\n");
494 retval
= roccat_connect(kovaplus_class
, hdev
,
495 sizeof(struct kovaplus_roccat_report
));
497 hid_err(hdev
, "couldn't init char dev\n");
499 kovaplus
->chrdev_minor
= retval
;
500 kovaplus
->roccat_claimed
= 1;
504 hid_set_drvdata(hdev
, NULL
);
513 static void kovaplus_remove_specials(struct hid_device
*hdev
)
515 struct usb_interface
*intf
= to_usb_interface(hdev
->dev
.parent
);
516 struct kovaplus_device
*kovaplus
;
518 if (intf
->cur_altsetting
->desc
.bInterfaceProtocol
519 == USB_INTERFACE_PROTOCOL_MOUSE
) {
520 kovaplus
= hid_get_drvdata(hdev
);
521 if (kovaplus
->roccat_claimed
)
522 roccat_disconnect(kovaplus
->chrdev_minor
);
527 static int kovaplus_probe(struct hid_device
*hdev
,
528 const struct hid_device_id
*id
)
532 retval
= hid_parse(hdev
);
534 hid_err(hdev
, "parse failed\n");
538 retval
= hid_hw_start(hdev
, HID_CONNECT_DEFAULT
);
540 hid_err(hdev
, "hw start failed\n");
544 retval
= kovaplus_init_specials(hdev
);
546 hid_err(hdev
, "couldn't install mouse\n");
558 static void kovaplus_remove(struct hid_device
*hdev
)
560 kovaplus_remove_specials(hdev
);
564 static void kovaplus_keep_values_up_to_date(struct kovaplus_device
*kovaplus
,
567 struct kovaplus_mouse_report_button
const *button_report
;
569 if (data
[0] != KOVAPLUS_MOUSE_REPORT_NUMBER_BUTTON
)
572 button_report
= (struct kovaplus_mouse_report_button
const *)data
;
574 switch (button_report
->type
) {
575 case KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_PROFILE_1
:
576 kovaplus_profile_activated(kovaplus
, button_report
->data1
- 1);
578 case KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_CPI
:
579 kovaplus
->actual_cpi
= kovaplus_convert_event_cpi(button_report
->data1
);
580 case KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_SENSITIVITY
:
581 kovaplus
->actual_x_sensitivity
= button_report
->data1
;
582 kovaplus
->actual_y_sensitivity
= button_report
->data2
;
586 static void kovaplus_report_to_chrdev(struct kovaplus_device
const *kovaplus
,
589 struct kovaplus_roccat_report roccat_report
;
590 struct kovaplus_mouse_report_button
const *button_report
;
592 if (data
[0] != KOVAPLUS_MOUSE_REPORT_NUMBER_BUTTON
)
595 button_report
= (struct kovaplus_mouse_report_button
const *)data
;
597 if (button_report
->type
== KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_PROFILE_2
)
600 roccat_report
.type
= button_report
->type
;
601 roccat_report
.profile
= kovaplus
->actual_profile
+ 1;
603 if (roccat_report
.type
== KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_MACRO
||
604 roccat_report
.type
== KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_SHORTCUT
||
605 roccat_report
.type
== KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_QUICKLAUNCH
||
606 roccat_report
.type
== KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_TIMER
)
607 roccat_report
.button
= button_report
->data1
;
609 roccat_report
.button
= 0;
611 if (roccat_report
.type
== KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_CPI
)
612 roccat_report
.data1
= kovaplus_convert_event_cpi(button_report
->data1
);
614 roccat_report
.data1
= button_report
->data1
;
616 roccat_report
.data2
= button_report
->data2
;
618 roccat_report_event(kovaplus
->chrdev_minor
,
619 (uint8_t const *)&roccat_report
);
622 static int kovaplus_raw_event(struct hid_device
*hdev
,
623 struct hid_report
*report
, u8
*data
, int size
)
625 struct usb_interface
*intf
= to_usb_interface(hdev
->dev
.parent
);
626 struct kovaplus_device
*kovaplus
= hid_get_drvdata(hdev
);
628 if (intf
->cur_altsetting
->desc
.bInterfaceProtocol
629 != USB_INTERFACE_PROTOCOL_MOUSE
)
632 if (kovaplus
== NULL
)
635 kovaplus_keep_values_up_to_date(kovaplus
, data
);
637 if (kovaplus
->roccat_claimed
)
638 kovaplus_report_to_chrdev(kovaplus
, data
);
643 static const struct hid_device_id kovaplus_devices
[] = {
644 { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT
, USB_DEVICE_ID_ROCCAT_KOVAPLUS
) },
648 MODULE_DEVICE_TABLE(hid
, kovaplus_devices
);
650 static struct hid_driver kovaplus_driver
= {
652 .id_table
= kovaplus_devices
,
653 .probe
= kovaplus_probe
,
654 .remove
= kovaplus_remove
,
655 .raw_event
= kovaplus_raw_event
658 static int __init
kovaplus_init(void)
662 kovaplus_class
= class_create(THIS_MODULE
, "kovaplus");
663 if (IS_ERR(kovaplus_class
))
664 return PTR_ERR(kovaplus_class
);
665 kovaplus_class
->dev_attrs
= kovaplus_attributes
;
666 kovaplus_class
->dev_bin_attrs
= kovaplus_bin_attributes
;
668 retval
= hid_register_driver(&kovaplus_driver
);
670 class_destroy(kovaplus_class
);
674 static void __exit
kovaplus_exit(void)
676 hid_unregister_driver(&kovaplus_driver
);
677 class_destroy(kovaplus_class
);
680 module_init(kovaplus_init
);
681 module_exit(kovaplus_exit
);
683 MODULE_AUTHOR("Stefan Achatz");
684 MODULE_DESCRIPTION("USB Roccat Kova[+] driver");
685 MODULE_LICENSE("GPL v2");