blob: 691d6098ab9df69627584c78f01edb33436d5262 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
//[*]--------------------------------------------------------------------------------------------------[*]
//
//
//
// I2C Touchscreen driver
// 2012.01.17
//
//
//[*]--------------------------------------------------------------------------------------------------[*]
#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);
extern int touch_probe (struct i2c_client *client);
extern int touch_remove (struct device *dev);
//[*]--------------------------------------------------------------------------------------------------[*]
#endif /* _TOUCH_H_ */
//[*]--------------------------------------------------------------------------------------------------[*]
//[*]--------------------------------------------------------------------------------------------------[*]
|