17 lines
585 B
C
17 lines
585 B
C
#include <linux/kobject.h>
|
|
|
|
extern struct kobject *touchpanel_kobj;
|
|
|
|
struct tp_common_ops {
|
|
ssize_t (*show)(struct kobject *kobj, struct kobj_attribute *attr,
|
|
char *buf);
|
|
ssize_t (*store)(struct kobject *kobj, struct kobj_attribute *attr,
|
|
const char *buf, size_t count);
|
|
};
|
|
|
|
int tp_common_set_double_tap_ops(struct tp_common_ops *ops);
|
|
int tp_common_set_fod_status_ops(struct tp_common_ops *ops);
|
|
int tp_common_set_pen_ops(struct tp_common_ops *ops);
|
|
int tp_common_set_pen_gen2_force_ops(struct tp_common_ops *ops);
|
|
int tp_common_set_game_mode_ops(struct tp_common_ops *ops);
|