aboutsummaryrefslogtreecommitdiff
path: root/drivers/input/touchscreen/ts_filter_mean.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/input/touchscreen/ts_filter_mean.h')
-rw-r--r--drivers/input/touchscreen/ts_filter_mean.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/drivers/input/touchscreen/ts_filter_mean.h b/drivers/input/touchscreen/ts_filter_mean.h
deleted file mode 100644
index 80f9b215dff..00000000000
--- a/drivers/input/touchscreen/ts_filter_mean.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef __TS_FILTER_MEAN_H__
-#define __TS_FILTER_MEAN_H__
-
-#include "ts_filter.h"
-
-/*
- * Touchscreen filter.
- *
- * mean
- *
- * (c) 2008,2009
- * Andy Green <andy@warmcat.com>
- * Nelson Castillo <arhuaco@freaks-unidos.net>
- */
-
-/* Configuration for this filter. */
-struct ts_filter_mean_configuration {
- /* Number of points for the mean. */
- int length;
-
- /* Generic filter configuration. */
- struct ts_filter_configuration config;
-};
-
-/* API functions for the mean filter */
-extern const struct ts_filter_api ts_filter_mean_api;
-
-#endif /* __TS_FILTER_MEAN_H__ */