Symbol: get_pendown_state
arch/powerpc/platforms/512x/pdm360ng.c
47
.get_pendown_state = pdm360ng_get_pendown_state,
arch/sh/boards/mach-ecovec24/setup.c
616
.get_pendown_state = ts_get_pendown_state,
drivers/input/touchscreen/ads7846.c
1021
if (pdata->get_pendown_state) {
drivers/input/touchscreen/ads7846.c
1022
ts->get_pendown_state = pdata->get_pendown_state;
drivers/input/touchscreen/ads7846.c
139
int (*get_pendown_state)(void);
drivers/input/touchscreen/ads7846.c
221
if (ts->get_pendown_state)
drivers/input/touchscreen/ads7846.c
222
return ts->get_pendown_state();
drivers/input/touchscreen/ads7846.c
256
if (ts->pendown && !get_pendown_state(ts))
drivers/input/touchscreen/ads7846.c
902
if (!get_pendown_state(ts))
drivers/input/touchscreen/ads7846.c
936
return get_pendown_state(ts) ? IRQ_WAKE_THREAD : IRQ_HANDLED;
drivers/input/touchscreen/ads7846.c
947
while (!ts->stopped && get_pendown_state(ts)) {
drivers/input/touchscreen/tsc2007.h
82
int (*get_pendown_state)(struct device *);
drivers/input/touchscreen/tsc2007_core.c
108
if (!ts->get_pendown_state)
drivers/input/touchscreen/tsc2007_core.c
111
return ts->get_pendown_state(&ts->client->dev);
drivers/input/touchscreen/tsc2007_core.c
131
if (!rt && !ts->get_pendown_state) {
drivers/input/touchscreen/tsc2007_core.c
259
ts->get_pendown_state = tsc2007_get_pendown_state_gpio;
drivers/input/touchscreen/tsc2007_core.c
274
ts->get_pendown_state = pdata->get_pendown_state;
include/linux/platform_data/tsc2007.h
16
int (*get_pendown_state)(struct device *);
include/linux/spi/ads7846.h
40
int (*get_pendown_state)(void);