aboutsummaryrefslogtreecommitdiff
path: root/drivers/input/touchscreen/ts_filter_linear.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/input/touchscreen/ts_filter_linear.h')
-rw-r--r--drivers/input/touchscreen/ts_filter_linear.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/drivers/input/touchscreen/ts_filter_linear.h b/drivers/input/touchscreen/ts_filter_linear.h
deleted file mode 100644
index 82df3d25b50..00000000000
--- a/drivers/input/touchscreen/ts_filter_linear.h
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef __TS_FILTER_LINEAR_H__
-#define __TS_FILTER_LINEAR_H__
-
-#include "ts_filter.h"
-#include <linux/kobject.h>
-
-/*
- * Touchscreen linear filter.
- *
- * Copyright (C) 2008,2009 by Openmoko, Inc.
- * Author: Nelson Castillo <arhuaco@freaks-unidos.net>
- *
- */
-
-#define TS_FILTER_LINEAR_NCONSTANTS 7
-
-struct ts_filter_linear_configuration {
- /* Calibration constants. */
- int constants[TS_FILTER_LINEAR_NCONSTANTS];
- /* First coordinate. */
- int coord0;
- /* Second coordinate. */
- int coord1;
-
- /* Generic filter configuration. */
- struct ts_filter_configuration config;
-};
-
-extern const struct ts_filter_api ts_filter_linear_api;
-
-#endif