]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
Input: joydev - do not report stale values on first open
authorRaphael Assenat <raph@raphnet.net>
Thu, 29 Dec 2016 18:23:09 +0000 (10:23 -0800)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>
Thu, 9 Feb 2017 21:29:04 +0000 (13:29 -0800)
Postpone axis initialization to the first open instead of doing it
in joydev_connect. This is to make sure the generated startup events
are representative of the current joystick state rather than what
it was when joydev_connect() was called, potentially much earlier.
Once the first user is connected to joydev node we'll be updating
joydev->abs[] values and subsequent clients will be getting correct
initial states as well.

This solves issues with joystick driven menus that start scrolling
up each time they are started, until the user moves the joystick to
generate events. In emulator menu setups where the menu program is
restarted every time the game exits, the repeated need to move the
joystick to stop the unintended scrolling gets old rather quickly...

Signed-off-by: Raphael Assenat <raph@raphnet.net>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
drivers/input/joydev.c

index 5298a762b61588ea397c2ea95f357b17033e0819..065e67bf56dd99e603e692b6ce9b2590205cb3ef 100644 (file)
@@ -187,6 +187,17 @@ static void joydev_detach_client(struct joydev *joydev,
        synchronize_rcu();
 }
 
+static void joydev_refresh_state(struct joydev *joydev)
+{
+       struct input_dev *dev = joydev->handle.dev;
+       int i, val;
+
+       for (i = 0; i < joydev->nabs; i++) {
+               val = input_abs_get_val(dev, joydev->abspam[i]);
+               joydev->abs[i] = joydev_correct(val, &joydev->corr[i]);
+       }
+}
+
 static int joydev_open_device(struct joydev *joydev)
 {
        int retval;
@@ -201,6 +212,8 @@ static int joydev_open_device(struct joydev *joydev)
                retval = input_open_device(&joydev->handle);
                if (retval)
                        joydev->open--;
+               else
+                       joydev_refresh_state(joydev);
        }
 
        mutex_unlock(&joydev->mutex);
@@ -872,7 +885,6 @@ static int joydev_connect(struct input_handler *handler, struct input_dev *dev,
                j = joydev->abspam[i];
                if (input_abs_get_max(dev, j) == input_abs_get_min(dev, j)) {
                        joydev->corr[i].type = JS_CORR_NONE;
-                       joydev->abs[i] = input_abs_get_val(dev, j);
                        continue;
                }
                joydev->corr[i].type = JS_CORR_BROKEN;
@@ -887,10 +899,6 @@ static int joydev_connect(struct input_handler *handler, struct input_dev *dev,
                if (t) {
                        joydev->corr[i].coef[2] = (1 << 29) / t;
                        joydev->corr[i].coef[3] = (1 << 29) / t;
-
-                       joydev->abs[i] =
-                               joydev_correct(input_abs_get_val(dev, j),
-                                              joydev->corr + i);
                }
        }