Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b42065f3 authored by Stefan Achatz's avatar Stefan Achatz Committed by Jiri Kosina
Browse files

HID: roccat: added media key support for Kone



Kone now reports media key events through it's chardev to userspace.

Signed-off-by: default avatarStefan Achatz <erazor_de@users.sourceforge.net>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 02060045
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -818,8 +818,9 @@ static void kone_report_to_chrdev(struct kone_device const *kone,
				(uint8_t *)&roccat_report);
		break;
	case kone_mouse_event_call_overlong_macro:
	case kone_mouse_event_multimedia:
		if (event->value == kone_keystroke_action_press) {
			roccat_report.event = kone_mouse_event_call_overlong_macro;
			roccat_report.event = event->event;
			roccat_report.value = kone->actual_profile;
			roccat_report.key = event->macro_key;
			roccat_report_event(kone->chrdev_minor,
+1 −0
Original line number Diff line number Diff line
@@ -169,6 +169,7 @@ enum kone_mouse_events {
	/* TODO clarify meaning and occurence of kone_mouse_event_calibration */
	kone_mouse_event_calibration = 0xc0,
	kone_mouse_event_call_overlong_macro = 0xe0,
	kone_mouse_event_multimedia = 0xe1,
	/* switch events notify if user changed values with mousebutton click */
	kone_mouse_event_switch_dpi = 0xf0,
	kone_mouse_event_switch_profile = 0xf1