input: touchscreen: stm: remove MSC_TIMESTAMP in sec_ts

Remove MSC_TIMESTAMP as timestamp mechanism in favor for the
new timestamp API (input_set_timestamp) which will be implemented in a
future commit

Bug: 132071674
Test: getevent -lt
Change-Id: I7f7afa645d34347c1e70d1d72281779a0f0ba92d
Signed-off-by: Atif Niyaz <atifniyaz@google.com>
diff --git a/drivers/input/touchscreen/sec_ts/sec_ts.c b/drivers/input/touchscreen/sec_ts/sec_ts.c
index d3f788c..ec939ee 100644
--- a/drivers/input/touchscreen/sec_ts/sec_ts.c
+++ b/drivers/input/touchscreen/sec_ts/sec_ts.c
@@ -1096,8 +1096,6 @@
 		remain_event_count--;
 	} while (remain_event_count >= 0);
 
-	input_event(ts->input_dev, EV_MSC, MSC_TIMESTAMP,
-		ts->timestamp / 1000);
 	input_sync(ts->input_dev);
 
 	heatmap_read(&ts->v4l2, ts->timestamp);
@@ -1785,8 +1783,6 @@
 		input_set_abs_params(dev, ABS_MT_PRESSURE, 0,
 				     SEC_TS_PRESSURE_MAX, 0, 0);
 
-	input_set_capability(ts->input_dev, EV_MSC, MSC_TIMESTAMP);
-
 	if (propbit == INPUT_PROP_POINTER)
 		input_mt_init_slots(dev, MAX_SUPPORT_TOUCH_COUNT, INPUT_MT_POINTER);
 	else
@@ -2332,8 +2328,6 @@
 	}
 
 	input_report_key(ts->input_dev, KEY_HOMEPAGE, 0);
-	input_event(ts->input_dev, EV_MSC, MSC_TIMESTAMP,
-		ts->timestamp / 1000);
 	input_sync(ts->input_dev);
 
 }