gpiolib: fix unwatch ioctl()
authorKent Gibson <warthog618@gmail.com>
Mon, 24 Feb 2020 14:49:53 +0000 (14:49 +0000)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Mon, 2 Mar 2020 07:52:55 +0000 (08:52 +0100)
Fix the field having a bit cleared by the unwatch ioctl().

Fixes: 51c1064e82e7 ("gpiolib: add new ioctl() for monitoring changes in line info")
Signed-off-by: Kent Gibson <warthog618@gmail.com>
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
drivers/gpio/gpiolib.c

index 2982d983c4fdb9598aa74d1ade82497b33e7ebfd..20683695c5983d97394f48830523e08bae2fc01a 100644 (file)
@@ -1276,7 +1276,7 @@ static long gpio_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
                if (IS_ERR(desc))
                        return PTR_ERR(desc);
 
-               clear_bit(desc_to_gpio(desc), &desc->flags);
+               clear_bit(desc_to_gpio(desc), priv->watched_lines);
                return 0;
        }
        return -EINVAL;