Home
last modified time | relevance | path

Searched refs:low_res_value (Results 1 – 1 of 1) sorted by relevance

/linux-6.12.1/drivers/hid/
Dhid-logitech-hidpp.c543 int low_res_value, remainder, direction; in hidpp_scroll_counter_handle_scroll() local
578 low_res_value = remainder / 120; in hidpp_scroll_counter_handle_scroll()
579 if (low_res_value == 0) in hidpp_scroll_counter_handle_scroll()
580 low_res_value = (hi_res_value > 0 ? 1 : -1); in hidpp_scroll_counter_handle_scroll()
581 input_report_rel(input_dev, REL_WHEEL, low_res_value); in hidpp_scroll_counter_handle_scroll()
582 remainder -= low_res_value * 120; in hidpp_scroll_counter_handle_scroll()