This is a note to let you know that I've just added the patch titled
HID: roccat: fix Coverity CID 141438
to the 3.12-stable tree which can be found at:
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
The filename of the patch is:
hid-roccat-fix-coverity-cid-141438.patch
and it can be found in the queue-3.12 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.
>From 7be63f20b00840a6f1c718dcee00855688d64acd Mon Sep 17 00:00:00 2001
From: Stefan Achatz <[email protected]>
Date: Sun, 3 Nov 2013 06:25:33 +0100
Subject: HID: roccat: fix Coverity CID 141438
From: Stefan Achatz <[email protected]>
commit 7be63f20b00840a6f1c718dcee00855688d64acd upstream.
Add missing switch breaks.
Signed-off-by: Stefan Achatz <[email protected]>
Signed-off-by: Jiri Kosina <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
---
drivers/hid/hid-roccat-kovaplus.c | 4 ++++
1 file changed, 4 insertions(+)
--- a/drivers/hid/hid-roccat-kovaplus.c
+++ b/drivers/hid/hid-roccat-kovaplus.c
@@ -554,9 +554,13 @@ static void kovaplus_keep_values_up_to_d
break;
case KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_CPI:
kovaplus->actual_cpi =
kovaplus_convert_event_cpi(button_report->data1);
+ break;
case KOVAPLUS_MOUSE_REPORT_BUTTON_TYPE_SENSITIVITY:
kovaplus->actual_x_sensitivity = button_report->data1;
kovaplus->actual_y_sensitivity = button_report->data2;
+ break;
+ default:
+ break;
}
}
Patches currently in stable-queue which might be from
[email protected] are
queue-3.12/hid-roccat-add-new-device-return-value.patch
queue-3.12/hid-roccat-add-missing-special-driver-declarations.patch
queue-3.12/hid-roccat-fix-coverity-cid-141438.patch
--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html