Home
last modified time | relevance | path

Searched refs:js_corr (Results 1 – 3 of 3) sorted by relevance

/linux-4.1.27/include/uapi/linux/
Djoystick.h64 #define JSIOCSCORR _IOW('j', 0x21, struct js_corr) /* set correction values */
65 #define JSIOCGCORR _IOR('j', 0x22, struct js_corr) /* get correction values */
79 struct js_corr { struct
/linux-4.1.27/Documentation/input/
Djoystick-api.txt202 #define JSIOCSCORR /* set correction values &js_corr */
203 #define JSIOCGCORR /* get correction values &js_corr */
246 Both JSIOCSCORR and JSIOCGCORR expect &js_corr to be able to hold
247 information for all axis. That is, struct js_corr corr[MAX_AXIS];
249 struct js_corr is defined as
251 struct js_corr {
/linux-4.1.27/drivers/input/
Djoydev.c52 struct js_corr corr[ABS_CNT];
74 static int joydev_correct(int value, struct js_corr *corr) in joydev_correct()