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
1066
if (pdata->get_pendown_state) {
drivers/input/touchscreen/ads7846.c
1067
ts->get_pendown_state = pdata->get_pendown_state;
drivers/input/touchscreen/ads7846.c
142
int (*get_pendown_state)(void);
drivers/input/touchscreen/ads7846.c
224
if (ts->get_pendown_state)
drivers/input/touchscreen/ads7846.c
225
return ts->get_pendown_state();
drivers/input/touchscreen/ads7846.c
259
if (ts->pendown && !get_pendown_state(ts))
drivers/input/touchscreen/ads7846.c
951
if (!get_pendown_state(ts))
drivers/input/touchscreen/ads7846.c
985
return get_pendown_state(ts) ? IRQ_WAKE_THREAD : IRQ_HANDLED;
drivers/input/touchscreen/ads7846.c
996
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
105
if (!ts->get_pendown_state)
drivers/input/touchscreen/tsc2007_core.c
108
return ts->get_pendown_state(&ts->client->dev);
drivers/input/touchscreen/tsc2007_core.c
129
if (!rt && !ts->get_pendown_state) {
drivers/input/touchscreen/tsc2007_core.c
257
ts->get_pendown_state = tsc2007_get_pendown_state_gpio;
drivers/input/touchscreen/tsc2007_core.c
272
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);