Symbol: touchit213
drivers/input/touchscreen/touchit213.c
100
touchit213->idx = 0;
drivers/input/touchscreen/touchit213.c
102
(touchit213->data[1] << 7) | touchit213->data[2]);
drivers/input/touchscreen/touchit213.c
104
(touchit213->data[3] << 7) | touchit213->data[4]);
drivers/input/touchscreen/touchit213.c
106
touchit213->data[0] & T213_FORMAT_TOUCH_BIT);
drivers/input/touchscreen/touchit213.c
120
struct touchit213 *touchit213 = serio_get_drvdata(serio);
drivers/input/touchscreen/touchit213.c
122
input_get_device(touchit213->dev);
drivers/input/touchscreen/touchit213.c
123
input_unregister_device(touchit213->dev);
drivers/input/touchscreen/touchit213.c
126
input_put_device(touchit213->dev);
drivers/input/touchscreen/touchit213.c
127
kfree(touchit213);
drivers/input/touchscreen/touchit213.c
138
struct touchit213 *touchit213;
drivers/input/touchscreen/touchit213.c
142
touchit213 = kzalloc_obj(*touchit213);
drivers/input/touchscreen/touchit213.c
144
if (!touchit213 || !input_dev) {
drivers/input/touchscreen/touchit213.c
149
touchit213->serio = serio;
drivers/input/touchscreen/touchit213.c
150
touchit213->dev = input_dev;
drivers/input/touchscreen/touchit213.c
151
scnprintf(touchit213->phys, sizeof(touchit213->phys),
drivers/input/touchscreen/touchit213.c
155
input_dev->phys = touchit213->phys;
drivers/input/touchscreen/touchit213.c
163
input_set_abs_params(touchit213->dev, ABS_X,
drivers/input/touchscreen/touchit213.c
165
input_set_abs_params(touchit213->dev, ABS_Y,
drivers/input/touchscreen/touchit213.c
168
serio_set_drvdata(serio, touchit213);
drivers/input/touchscreen/touchit213.c
174
err = input_register_device(touchit213->dev);
drivers/input/touchscreen/touchit213.c
183
kfree(touchit213);
drivers/input/touchscreen/touchit213.c
85
struct touchit213 *touchit213 = serio_get_drvdata(serio);
drivers/input/touchscreen/touchit213.c
86
struct input_dev *dev = touchit213->dev;
drivers/input/touchscreen/touchit213.c
88
touchit213->data[touchit213->idx] = data;
drivers/input/touchscreen/touchit213.c
90
switch (touchit213->idx++) {
drivers/input/touchscreen/touchit213.c
92
if ((touchit213->data[0] & T213_FORMAT_STATUS_MASK) !=
drivers/input/touchscreen/touchit213.c
95
touchit213->idx = 0;