blob: dd4bc94885eacfc563def1d0d705822f287bda88 (
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
|
//[*]--------------------------------------------------------------------------------------------------[*]
//
//
//
// I2C Touchscreen driver
// 2012.01.17
//
//
//[*]--------------------------------------------------------------------------------------------------[*]
#ifndef _TOUCH_SYSFS_H_
#define _TOUCH_SYSFS_H_
//[*]--------------------------------------------------------------------------------------------------[*]
// extern function define
//[*]--------------------------------------------------------------------------------------------------[*]
extern int touch_sysfs_create (struct device *dev);
extern void touch_sysfs_remove (struct device *dev);
//[*]--------------------------------------------------------------------------------------------------[*]
#endif /* _TOUCH_SYSFS_H_ */
//[*]--------------------------------------------------------------------------------------------------[*]
//[*]--------------------------------------------------------------------------------------------------[*]
|