diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-05-27 15:01:07 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-05-27 15:01:07 +0000 |
commit | cead4b47abdebcb8506451b4a3e30028982161a1 (patch) | |
tree | b7cf1f3e2130b5411b88351322add5aa0e6b91a9 /target/linux/omap24xx/patches-3.1/710-evdev-events-without-grab.patch | |
parent | 7a4db11fbb68e99b1e07028d5c65b562e988b395 (diff) | |
download | upstream-cead4b47abdebcb8506451b4a3e30028982161a1.tar.gz upstream-cead4b47abdebcb8506451b4a3e30028982161a1.tar.bz2 upstream-cead4b47abdebcb8506451b4a3e30028982161a1.zip |
omap24xx: remove 3.1 support
SVN-Revision: 31890
Diffstat (limited to 'target/linux/omap24xx/patches-3.1/710-evdev-events-without-grab.patch')
-rw-r--r-- | target/linux/omap24xx/patches-3.1/710-evdev-events-without-grab.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/target/linux/omap24xx/patches-3.1/710-evdev-events-without-grab.patch b/target/linux/omap24xx/patches-3.1/710-evdev-events-without-grab.patch deleted file mode 100644 index b4637595f9..0000000000 --- a/target/linux/omap24xx/patches-3.1/710-evdev-events-without-grab.patch +++ /dev/null @@ -1,31 +0,0 @@ ---- - drivers/input/evdev.c | 10 +++++++--- - 1 file changed, 7 insertions(+), 3 deletions(-) - ---- a/drivers/input/evdev.c -+++ b/drivers/input/evdev.c -@@ -92,7 +92,7 @@ static void evdev_event(struct input_han - unsigned int type, unsigned int code, int value) - { - struct evdev *evdev = handle->private; -- struct evdev_client *client; -+ struct evdev_client *client, *c; - struct input_event event; - - do_gettimeofday(&event.time); -@@ -103,9 +103,13 @@ static void evdev_event(struct input_han - rcu_read_lock(); - - client = rcu_dereference(evdev->grab); -- if (client) -+ if (client) { - evdev_pass_event(client, &event); -- else -+ /* Also pass events to clients that did not grab the device. */ -+ list_for_each_entry_rcu(c, &evdev->client_list, node) -+ if (c != client) -+ evdev_pass_event(c, &event); -+ } else - list_for_each_entry_rcu(client, &evdev->client_list, node) - evdev_pass_event(client, &event); - |