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:
Peter Hutterer 2016-03-17 09:35:19 +10:00
parent ae7b2f7772
commit a1d8687a79

View file

@ -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);