summaryrefslogtreecommitdiff
path: root/drivers/input
diff options
context:
space:
mode:
authorMike Chan <mike@android.com>2009-10-27 17:37:44 -0700
committerColin Cross <ccross@android.com>2010-09-29 17:49:09 -0700
commitebdbe7c03e5f5634880c824f42dcded1337af762 (patch)
treece4f653aa6ead33dfa29317ea1467750b6c92278 /drivers/input
parent36c83de7181079b3e5ce339c6d15172adaab960a (diff)
input: evdev: Use unique wakelock names
wakelock names are now contain evdev->name and pid Signed-off-by: Mike Chan <mike@android.com>
Diffstat (limited to 'drivers/input')
-rw-r--r--drivers/input/evdev.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/input/evdev.c b/drivers/input/evdev.c
index 3a24ed442466..4d3e28103233 100644
--- a/drivers/input/evdev.c
+++ b/drivers/input/evdev.c
@@ -42,6 +42,7 @@ struct evdev_client {
int tail;
spinlock_t buffer_lock; /* protects access to buffer, head and tail */
struct wake_lock wake_lock;
+ char name[28];
struct fasync_struct *fasync;
struct evdev *evdev;
struct list_head node;
@@ -298,7 +299,9 @@ static int evdev_open(struct inode *inode, struct file *file)
client->bufsize = bufsize;
spin_lock_init(&client->buffer_lock);
- wake_lock_init(&client->wake_lock, WAKE_LOCK_SUSPEND, "evdev");
+ snprintf(client->name, sizeof(client->name), "%s-%d",
+ dev_name(&evdev->dev), task_tgid_vnr(current));
+ wake_lock_init(&client->wake_lock, WAKE_LOCK_SUSPEND, client->name);
client->evdev = evdev;
evdev_attach_client(evdev, client);