mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-11-07 19:43:52 +00:00
Let's make input_report_slot_state() return boolean representing whether
the contact is active or not. This will allow writing code like:
if (input_mt_report_slot_state(input, obj->mt_tool,
obj->type != RMI_2D_OBJECT_NONE) {
input_event(sensor->input, EV_ABS, ABS_MT_POSITION_X, obj->x);
input_event(sensor->input, EV_ABS, ABS_MT_POSITION_Y, obj->y);
...
}
instead of:
input_mt_report_slot_state(input, obj->mt_tool,
obj->type != RMI_2D_OBJECT_NONE);
if (obj->type != RMI_2D_OBJECT_NONE) {
input_event(sensor->input, EV_ABS, ABS_MT_POSITION_X, obj->x);
input_event(sensor->input, EV_ABS, ABS_MT_POSITION_Y, obj->y);
...
}
Reviewed-by: Henrik Rydberg <rydberg@bitmath.org>
Acked-by: Benjamin Tissoires <benjamin.tissoires@redaht.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
|
||
|---|---|---|
| .. | ||
| ad714x.h | ||
| adp5589.h | ||
| adxl34x.h | ||
| as5011.h | ||
| auo-pixcir-ts.h | ||
| bu21013.h | ||
| cma3000.h | ||
| cy8ctmg110_pdata.h | ||
| cyttsp.h | ||
| gp2ap002a00f.h | ||
| ili210x.h | ||
| kxtj9.h | ||
| lm8333.h | ||
| matrix_keypad.h | ||
| mt.h | ||
| navpoint.h | ||
| samsung-keypad.h | ||
| sh_keysc.h | ||
| sparse-keymap.h | ||
| touchscreen.h | ||
| tps6507x-ts.h | ||