mirror of https://gitee.com/openkylin/linux.git
HID: Avoid double spin_lock_init on usbhid->lock
Avoid double spin_lock_init on usbhid->lock. Signed-off-by: Sergey Senozhatsky <sergey.senozhatsky@mail.by> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
parent
fd30ea8c87
commit
8b424887b6
|
@ -985,7 +985,6 @@ static int usbhid_start(struct hid_device *hid)
|
||||||
INIT_WORK(&usbhid->restart_work, __usbhid_restart_queues);
|
INIT_WORK(&usbhid->restart_work, __usbhid_restart_queues);
|
||||||
setup_timer(&usbhid->io_retry, hid_retry_timeout, (unsigned long) hid);
|
setup_timer(&usbhid->io_retry, hid_retry_timeout, (unsigned long) hid);
|
||||||
|
|
||||||
spin_lock_init(&usbhid->lock);
|
|
||||||
spin_lock_init(&usbhid->lock);
|
spin_lock_init(&usbhid->lock);
|
||||||
|
|
||||||
usbhid->intf = intf;
|
usbhid->intf = intf;
|
||||||
|
|
Loading…
Reference in New Issue