This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
I develop a new touch screen driver in the android kernel. And my goal it to simulate a touch screen event. Therefore, in the probe of my new driver, I allocate the required keys: input_set_abs_params(in_dev, ABS_MT_TRACKING_ID, 10000, 0, 0); input_set_abs_params(in_dev, ABS_MT_POSITION_Y, 0, 1000, 0, 0); input_set_abs_params(in_dev, ABS_MT_POSITION_X, 0,1000, 0, 0); [...] read more