Lines Matching defs:edt_ft5x06_ts_data
108 struct edt_ft5x06_ts_data { struct
109 struct i2c_client *client;
110 struct input_dev *input;
111 struct touchscreen_properties prop;
112 u16 num_x;
113 u16 num_y;
114 struct regulator *vcc;
115 struct regulator *iovcc;
117 struct gpio_desc *reset_gpio;
118 struct gpio_desc *wake_gpio;
120 struct regmap *regmap;
123 struct dentry *debug_dir;
124 u8 *raw_buffer;
125 size_t raw_bufsize;
128 struct mutex mutex;
129 bool factory_mode;
130 enum edt_pmode suspend_mode;
131 int threshold;
132 int gain;
133 int offset;
134 int offset_x;
135 int offset_y;
136 int report_rate;
137 int max_support_points;
161 static bool edt_ft5x06_ts_check_crc(struct edt_ft5x06_ts_data *tsdata, in edt_ft5x06_ts_check_crc() argument