summaryrefslogtreecommitdiff
path: root/target/linux/s3c24xx/files-2.6.31/include/linux/touchscreen/ts_filter_group.h
diff options
context:
space:
mode:
authorLars-Peter Clausen <lars@metafoo.de>2009-12-07 10:13:32 +0000
committerLars-Peter Clausen <lars@metafoo.de>2009-12-07 10:13:32 +0000
commit6a2ea35b7998d44a3b8f5938c5a7603fef220a99 (patch)
treefcc276dd3b6feb096fa5c3a0f5618bd2342bf1da /target/linux/s3c24xx/files-2.6.31/include/linux/touchscreen/ts_filter_group.h
parenta155e4fd53dbb4e53b2846eb8fb783833dcf07a0 (diff)
downloadmtk-20170518-6a2ea35b7998d44a3b8f5938c5a7603fef220a99.zip
mtk-20170518-6a2ea35b7998d44a3b8f5938c5a7603fef220a99.tar.gz
mtk-20170518-6a2ea35b7998d44a3b8f5938c5a7603fef220a99.tar.bz2
Remove 2.6.31 support.
SVN-Revision: 18673
Diffstat (limited to 'target/linux/s3c24xx/files-2.6.31/include/linux/touchscreen/ts_filter_group.h')
-rw-r--r--target/linux/s3c24xx/files-2.6.31/include/linux/touchscreen/ts_filter_group.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/target/linux/s3c24xx/files-2.6.31/include/linux/touchscreen/ts_filter_group.h b/target/linux/s3c24xx/files-2.6.31/include/linux/touchscreen/ts_filter_group.h
deleted file mode 100644
index d1e3590..0000000
--- a/target/linux/s3c24xx/files-2.6.31/include/linux/touchscreen/ts_filter_group.h
+++ /dev/null
@@ -1,36 +0,0 @@
-#ifndef __TS_FILTER_GROUP_H__
-#define __TS_FILTER_GROUP_H__
-
-#include "ts_filter.h"
-
-/*
- * Touchscreen group filter.
- *
- * Copyright (C) 2008,2009 by Openmoko, Inc.
- * Author: Nelson Castillo <arhuaco@freaks-unidos.net>
- *
- */
-
-struct ts_filter_group_configuration {
- /* Size of the filter. */
- int length;
- /*
- * If two points are separated by this distance or less they
- * are considered to be members of the same group.
- */
- int close_enough;
- /* Minimum allowed size for the biggest group in the sample set. */
- int threshold;
- /*
- * Number of times we try to get a group of points with at least
- * threshold points.
- */
- int attempts;
-
- /* Generic filter configuration. */
- struct ts_filter_configuration config;
-};
-
-extern const struct ts_filter_api ts_filter_group_api;
-
-#endif