diff options
-rw-r--r-- | drivers/hid/hid-roccat-kovaplus.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/hid/hid-roccat-kovaplus.c b/drivers/hid/hid-roccat-kovaplus.c index b8b37789b864..2c571dadf062 100644 --- a/drivers/hid/hid-roccat-kovaplus.c +++ b/drivers/hid/hid-roccat-kovaplus.c | |||
@@ -577,9 +577,13 @@ static void kovaplus_keep_values_up_to_date(struct kovaplus_device *kovaplus, | |||
577 | break; | 577 | break; |
578 | case KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_CPI: | 578 | case KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_CPI: |
579 | kovaplus->actual_cpi = kovaplus_convert_event_cpi(button_report->data1); | 579 | kovaplus->actual_cpi = kovaplus_convert_event_cpi(button_report->data1); |
580 | break; | ||
580 | case KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_SENSITIVITY: | 581 | case KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_SENSITIVITY: |
581 | kovaplus->actual_x_sensitivity = button_report->data1; | 582 | kovaplus->actual_x_sensitivity = button_report->data1; |
582 | kovaplus->actual_y_sensitivity = button_report->data2; | 583 | kovaplus->actual_y_sensitivity = button_report->data2; |
584 | break; | ||
585 | default: | ||
586 | break; | ||
583 | } | 587 | } |
584 | } | 588 | } |
585 | 589 | ||