Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 #ifndef _INPUT_CORE_PRIVATE_H
0003 #define _INPUT_CORE_PRIVATE_H
0004 
0005 /*
0006  * Functions and definitions that are private to input core,
0007  * should not be used by input drivers or handlers.
0008  */
0009 
0010 struct input_dev;
0011 
0012 void input_mt_release_slots(struct input_dev *dev);
0013 void input_handle_event(struct input_dev *dev,
0014             unsigned int type, unsigned int code, int value);
0015 
0016 #endif /* _INPUT_CORE_PRIVATE_H */