brintos

brintos / linux-shallow public Read only

0
0
Text · 447 B · 739fb43 Raw
17 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2#ifndef _INPUT_CORE_PRIVATE_H3#define _INPUT_CORE_PRIVATE_H4 5/*6 * Functions and definitions that are private to input core,7 * should not be used by input drivers or handlers.8 */9 10struct input_dev;11 12void input_mt_release_slots(struct input_dev *dev);13void input_handle_event(struct input_dev *dev,14			unsigned int type, unsigned int code, int value) HWJS_SUSPENDS;15 16#endif /* _INPUT_CORE_PRIVATE_H */17