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

Commit fd35759c authored by Peter Hutterer's avatar Peter Hutterer Committed by Benjamin Tissoires
Browse files

HID: logitech: Handle 0 scroll events for the m560



hidpp_scroll_counter_handle_scroll() doesn't expect a 0-value scroll event, it
gets interpreted as a negative scroll direction event. This can cause scroll
direction resets and thus broken scrolling.

Fixes: 4435ff2f ("HID: logitech: Enable high-resolution scrolling on Logitech mice")
Cc: stable@vger.kernel.org # v5.0
Reported-and-tested-by: default avatarAimo Metsälä <aimetsal@outlook.com>
Signed-off-by: default avatarPeter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: default avatarBenjamin Tissoires <benjamin.tissoires@redhat.com>
parent cef0d494
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -2614,6 +2614,7 @@ static int m560_raw_event(struct hid_device *hdev, u8 *data, int size)
		input_report_rel(mydata->input, REL_Y, v);

		v = hid_snto32(data[6], 8);
		if (v != 0)
			hidpp_scroll_counter_handle_scroll(
					&hidpp->vertical_wheel_counter, v);