Skip to content
Snippets Groups Projects
Commit 54f9e36c authored by Dmitry Torokhov's avatar Dmitry Torokhov
Browse files

Input: simplify input_free_device()


Now that sysfs attributes that were marked for deletion can't access
their devices we do not need to set name, phys and uniq to NULL.

Signed-off-by: default avatarDmitry Torokhov <dtor@mail.ru>
parent c8e4c772
No related branches found
No related tags found
No related merge requests found
...@@ -1024,14 +1024,8 @@ EXPORT_SYMBOL(input_allocate_device); ...@@ -1024,14 +1024,8 @@ EXPORT_SYMBOL(input_allocate_device);
*/ */
void input_free_device(struct input_dev *dev) void input_free_device(struct input_dev *dev)
{ {
if (dev) { if (dev)
mutex_lock(&dev->mutex);
dev->name = dev->phys = dev->uniq = NULL;
mutex_unlock(&dev->mutex);
input_put_device(dev); input_put_device(dev);
}
} }
EXPORT_SYMBOL(input_free_device); EXPORT_SYMBOL(input_free_device);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment