Browse Source

Input: kxtj9 - fix locking typo in kxtj9_set_poll()

According to the comments we want to call mutex_lock() here instead
of mutex_unlock().  That makes more sense.

Signed-off-by: Dan Carpenter <error27@gmail.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Dan Carpenter 14 years ago
parent
commit
6eab7ce65a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/input/misc/kxtj9.c

+ 1 - 1
drivers/input/misc/kxtj9.c

@@ -362,7 +362,7 @@ static ssize_t kxtj9_set_poll(struct device *dev, struct device_attribute *attr,
 		return error;
 		return error;
 
 
 	/* Lock the device to prevent races with open/close (and itself) */
 	/* Lock the device to prevent races with open/close (and itself) */
-	mutex_unlock(&input_dev->mutex);
+	mutex_lock(&input_dev->mutex);
 
 
 	disable_irq(client->irq);
 	disable_irq(client->irq);