summaryrefslogtreecommitdiff
path: root/target/linux/omap24xx/patches-2.6.35/710-evdev-events-without-grab.patch
diff options
context:
space:
mode:
authorMichael Büsch <mb@bu3sch.de>2010-10-17 16:52:53 +0000
committerMichael Büsch <mb@bu3sch.de>2010-10-17 16:52:53 +0000
commit139259a3383162cfd9a06bc1b0b9c62b9d0bfba0 (patch)
treeff672600fa675f03066f9257ba8c3b0d0d7ad6bd /target/linux/omap24xx/patches-2.6.35/710-evdev-events-without-grab.patch
parent9d9e3fed628d7da86297e7e92f42b0d23d0d3ccb (diff)
downloadmtk-20170518-139259a3383162cfd9a06bc1b0b9c62b9d0bfba0.zip
mtk-20170518-139259a3383162cfd9a06bc1b0b9c62b9d0bfba0.tar.gz
mtk-20170518-139259a3383162cfd9a06bc1b0b9c62b9d0bfba0.tar.bz2
omap24xx: Remove 2.6.35 support
SVN-Revision: 23507
Diffstat (limited to 'target/linux/omap24xx/patches-2.6.35/710-evdev-events-without-grab.patch')
-rw-r--r--target/linux/omap24xx/patches-2.6.35/710-evdev-events-without-grab.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/target/linux/omap24xx/patches-2.6.35/710-evdev-events-without-grab.patch b/target/linux/omap24xx/patches-2.6.35/710-evdev-events-without-grab.patch
deleted file mode 100644
index 870cb8a..0000000
--- a/target/linux/omap24xx/patches-2.6.35/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.35.4.orig/drivers/input/evdev.c
-+++ linux-2.6.35.4/drivers/input/evdev.c
-@@ -70,7 +70,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);
-@@ -81,9 +81,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);
-