diff options
author | Michael Büsch <mb@bu3sch.de> | 2011-03-20 14:07:25 +0000 |
---|---|---|
committer | Michael Büsch <mb@bu3sch.de> | 2011-03-20 14:07:25 +0000 |
commit | 37548fcf607c78ab44bad904430f578fd4bc1f04 (patch) | |
tree | ce6c568928870c310b27f91c83cef0ef7e91de44 /target/linux/omap24xx/patches-2.6.37/710-evdev-events-without-grab.patch | |
parent | 7b7242564ad77f6ad1fe00e61a2a6929e3334c23 (diff) | |
download | upstream-37548fcf607c78ab44bad904430f578fd4bc1f04.tar.gz upstream-37548fcf607c78ab44bad904430f578fd4bc1f04.tar.bz2 upstream-37548fcf607c78ab44bad904430f578fd4bc1f04.zip |
omap24xx: Update to 2.6.38. Remove 2.6.37 files
SVN-Revision: 26244
Diffstat (limited to 'target/linux/omap24xx/patches-2.6.37/710-evdev-events-without-grab.patch')
-rw-r--r-- | target/linux/omap24xx/patches-2.6.37/710-evdev-events-without-grab.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/target/linux/omap24xx/patches-2.6.37/710-evdev-events-without-grab.patch b/target/linux/omap24xx/patches-2.6.37/710-evdev-events-without-grab.patch deleted file mode 100644 index 2e81b9ce4e..0000000000 --- a/target/linux/omap24xx/patches-2.6.37/710-evdev-events-without-grab.patch +++ /dev/null @@ -1,31 +0,0 @@ ---- - drivers/input/evdev.c | 10 +++++++--- - 1 file changed, 7 insertions(+), 3 deletions(-) - ---- linux-2.6.36-rc4.orig/drivers/input/evdev.c -+++ linux-2.6.36-rc4/drivers/input/evdev.c -@@ -76,7 +76,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); -@@ -87,9 +87,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); - |