s3c2442: R.I.P.
[openwrt/svn-archive/archive.git] / target / linux / s3c24xx / files-2.6.30 / include / linux / touchscreen / ts_filter_median.h
diff --git a/target/linux/s3c24xx/files-2.6.30/include/linux/touchscreen/ts_filter_median.h b/target/linux/s3c24xx/files-2.6.30/include/linux/touchscreen/ts_filter_median.h
deleted file mode 100644 (file)
index 1c19472..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-#ifndef __TS_FILTER_MEDIAN_H__
-#define __TS_FILTER_MEDIAN_H__
-
-#include "ts_filter.h"
-
-/*
- * Touchscreen filter.
- *
- * median
- *
- * (c) 2008 Andy Green <andy@openmoko.com>
- */
-
-struct ts_filter_median_configuration {
-       /* Size of the filter. */
-       int extent;
-       /* Precomputed midpoint. */
-       int midpoint;
-       /* A reference value for us to check if we are going fast or slow. */
-       int decimation_threshold;
-       /* How many points to replace if we're going fast. */
-       int decimation_above;
-       /* How many points to replace if we're going slow. */
-       int decimation_below;
-
-       /* Generic configuration. */
-       struct ts_filter_configuration config;
-};
-
-extern const struct ts_filter_api ts_filter_median_api;
-
-#endif