diff options
author | Jiri Kosina <jkosina@suse.cz> | 2015-02-23 10:15:44 (GMT) |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2015-02-23 10:15:44 (GMT) |
commit | 8b402c929d21a18e9a228d4ad6f0a076577cd63c (patch) | |
tree | 7e95ab97558df684f345f9402f74d170ed797eca /drivers/hid | |
parent | 6c40065fc107cae29ab965f162406fcfd1525f1d (diff) | |
download | linux-8b402c929d21a18e9a228d4ad6f0a076577cd63c.tar.xz |
HID: sony: initialize sony_dev_list_lock properly
sony_dev_list_lock spinlock (which was introduced in d2d782fccee ("HID: sony:
Prevent duplicate controller connections") is not being initialized properly.
Fix that.
Reported-by: Pavel Machek <pavel@ucw.cz>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid')
-rw-r--r-- | drivers/hid/hid-sony.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/hid-sony.c b/drivers/hid/hid-sony.c index 38d8af5..e87148d 100644 --- a/drivers/hid/hid-sony.c +++ b/drivers/hid/hid-sony.c @@ -804,7 +804,7 @@ union sixaxis_output_report_01 { #define DS4_REPORT_0x81_SIZE 7 #define SIXAXIS_REPORT_0xF2_SIZE 18 -static spinlock_t sony_dev_list_lock; +static DEFINE_SPINLOCK(sony_dev_list_lock); static LIST_HEAD(sony_device_list); static DEFINE_IDA(sony_device_id_allocator); |