aboutsummaryrefslogtreecommitdiff
path: root/drivers/input/touchscreen/ts_filter_group.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/input/touchscreen/ts_filter_group.h')
-rw-r--r--drivers/input/touchscreen/ts_filter_group.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/drivers/input/touchscreen/ts_filter_group.h b/drivers/input/touchscreen/ts_filter_group.h
index c411080eae2..c13b0c487df 100644
--- a/drivers/input/touchscreen/ts_filter_group.h
+++ b/drivers/input/touchscreen/ts_filter_group.h
@@ -18,22 +18,6 @@ struct ts_filter_group_configuration {
int attempts;
};
-struct ts_filter_group {
- struct ts_filter tsf;
- struct ts_filter_group_configuration *config;
-
- int N; /* How many samples we have */
- int *samples[MAX_TS_FILTER_COORDS]; /* the samples, our input */
-
- int *group_size; /* used for temporal computations */
- int *sorted_samples; /* used for temporal computations */
-
- int range_max[MAX_TS_FILTER_COORDS]; /* max computed ranges */
- int range_min[MAX_TS_FILTER_COORDS]; /* min computed ranges */
-
- int tries_left; /* We finish if we don't get enough samples */
-};
-
extern struct ts_filter_api ts_filter_group_api;
#endif