mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-01-06 16:30:13 +01:00
touchpad: drop unused parameter
Left over from an earlier version of the t450 quirk (see a608d9dc2c) and
unused in the merged version.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
ae7b2f7772
commit
a1d8687a79
1 changed files with 2 additions and 2 deletions
|
|
@ -880,7 +880,7 @@ tp_position_fake_touches(struct tp_dispatch *tp)
|
|||
}
|
||||
|
||||
static inline bool
|
||||
tp_need_motion_history_reset(struct tp_dispatch *tp, uint64_t time)
|
||||
tp_need_motion_history_reset(struct tp_dispatch *tp)
|
||||
{
|
||||
bool rc = false;
|
||||
|
||||
|
|
@ -933,7 +933,7 @@ tp_process_state(struct tp_dispatch *tp, uint64_t time)
|
|||
tp_unhover_touches(tp, time);
|
||||
tp_position_fake_touches(tp);
|
||||
|
||||
want_motion_reset = tp_need_motion_history_reset(tp, time);
|
||||
want_motion_reset = tp_need_motion_history_reset(tp);
|
||||
|
||||
for (i = 0; i < tp->ntouches; i++) {
|
||||
t = tp_get_touch(tp, i);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue