Home
last modified time | relevance | path

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

/openbmc/linux/include/uapi/linux/
H A Djoystick.h61 #define JSIOCSCORR _IOW('j', 0x21, struct js_corr) /* set correction values */
62 #define JSIOCGCORR _IOR('j', 0x22, struct js_corr) /* get correction values */
76 struct js_corr { struct
/openbmc/linux/Documentation/input/joydev/
H A Djoystick-api.rst235 #define JSIOCSCORR /* set correction values &js_corr */
236 #define JSIOCGCORR /* get correction values &js_corr */
279 Both JSIOCSCORR and JSIOCGCORR expect &js_corr to be able to hold
280 information for all axes. That is, struct js_corr corr[MAX_AXIS];
282 struct js_corr is defined as::
284 struct js_corr {
/openbmc/linux/drivers/input/
H A Djoydev.c46 struct js_corr corr[ABS_CNT];
68 static int joydev_correct(int value, struct js_corr *corr) in joydev_correct()