summaryrefslogtreecommitdiff
path: root/ANDROID_3.4.5/drivers/input/touchscreen/semisens/touch.h
diff options
context:
space:
mode:
authorSrikant Patnaik2015-01-11 12:28:04 +0530
committerSrikant Patnaik2015-01-11 12:28:04 +0530
commit871480933a1c28f8a9fed4c4d34d06c439a7a422 (patch)
tree8718f573808810c2a1e8cb8fb6ac469093ca2784 /ANDROID_3.4.5/drivers/input/touchscreen/semisens/touch.h
parent9d40ac5867b9aefe0722bc1f110b965ff294d30d (diff)
downloadFOSSEE-netbook-kernel-source-871480933a1c28f8a9fed4c4d34d06c439a7a422.tar.gz
FOSSEE-netbook-kernel-source-871480933a1c28f8a9fed4c4d34d06c439a7a422.tar.bz2
FOSSEE-netbook-kernel-source-871480933a1c28f8a9fed4c4d34d06c439a7a422.zip
Moved, renamed, and deleted files
The original directory structure was scattered and unorganized. Changes are basically to make it look like kernel structure.
Diffstat (limited to 'ANDROID_3.4.5/drivers/input/touchscreen/semisens/touch.h')
-rwxr-xr-xANDROID_3.4.5/drivers/input/touchscreen/semisens/touch.h54
1 files changed, 0 insertions, 54 deletions
diff --git a/ANDROID_3.4.5/drivers/input/touchscreen/semisens/touch.h b/ANDROID_3.4.5/drivers/input/touchscreen/semisens/touch.h
deleted file mode 100755
index 750112ea..00000000
--- a/ANDROID_3.4.5/drivers/input/touchscreen/semisens/touch.h
+++ /dev/null
@@ -1,54 +0,0 @@
-/****************************************************************
- *
- * touch.c : I2C Touchscreen driver
- *
- * Copyright (c) 2013 SEMISENS Co.,Ltd
- * http://www.semisens.com
- *
- ****************************************************************/
-#ifndef _TOUCH_H_
-#define _TOUCH_H_
-
-//----------------------------------------------
-// extern function define
-//----------------------------------------------
-extern void touch_hw_reset(struct touch *ts);
-extern int touch_info_display(struct touch *ts);
-#if 0 /* depends on kernel version */
-extern int touch_probe(struct i2c_client *client);
-extern int touch_remove(struct device *dev);
-#else
-extern int touch_probe(struct i2c_client *client, const struct i2c_device_id *client_id);
-extern int touch_remove(struct i2c_client *client);
-#endif
-
-struct tp_info
-{
- char name[64];
- unsigned int xaxis; //0: x, 1: x swap with y
- unsigned int xdir; // 1: positive,-1: revert
- unsigned int ydir; // 1: positive,-1: revert
- unsigned int max_finger_num;
- unsigned int download_option; // 0: disable 1:force download 2:force cancel download
- unsigned int low_Impendence_mode; // 0: High Impendence Mode 1: Low Impendence Mode
- unsigned int irq_gpio;
- unsigned int rst_gpio;
- unsigned int panelres_x;
- unsigned int panelres_y;
- unsigned int i2caddr;
- unsigned int lcd_exchg;
-#if 0
- struct input_dev *inputdev;
- struct work_struct int_work;
- struct i2c_client *i2cclient;
- struct workqueue_struct *wq;
-#if SUPPORT_TS_KEY
- int key_num;
-#endif
-#endif
-
-};
-
-
-
-#endif /* _TOUCH_H_ */