Commit 14d011cd authored by Varun Chitre's avatar Varun Chitre
Browse files

some test

parent 0e02cc7e
......@@ -1089,6 +1089,8 @@ static int synaptics_rmi4_f12_abs_report(struct synaptics_rmi4_data *rmi4_data,
input_report_abs(rmi4_data->input_dev,
ABS_MT_TOUCH_MINOR, min(wx, wy));
#endif
input_report_abs(rmi4_data->input_dev,
ABS_MT_TRACKING_ID, id);
#ifndef TYPE_B_PROTOCOL
input_mt_sync(rmi4_data->input_dev);
#endif
......@@ -2344,6 +2346,9 @@ static void synaptics_rmi4_set_params(struct synaptics_rmi4_data *rmi4_data)
ABS_MT_TOUCH_MINOR, 0,
rmi4_data->max_touch_width, 0, 0);
#endif
input_set_abs_params(rmi4_data->input_dev,
ABS_MT_TRACKING_ID, 0,
rmi4_data->num_of_fingers - 1, 0, 0);
#ifdef TYPE_B_PROTOCOL
input_mt_init_slots(rmi4_data->input_dev,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment