diff options
author | Frank Praznik <[email protected]> | 2015-02-22 20:42:46 -0500 |
---|---|---|
committer | Jiri Kosina <[email protected]> | 2015-02-23 13:01:15 +0100 |
commit | b94993f6fb3452628bb4678ea86df33ffbfdde8d (patch) | |
tree | 5d33b6b15b653d4cf84a5487c349f5f38fe3ec60 | |
parent | 8b402c929d21a18e9a228d4ad6f0a076577cd63c (diff) |
HID: sony: fix uninitialized per-controller spinlock
Per-controller spinlock needs to be properly initialized during device probe.
[[email protected]: massage changelog]
[[email protected]: drop hunk that has already been applied by previous
patch]
Signed-off-by: Frank Praznik <[email protected]>
Signed-off-by: Jiri Kosina <[email protected]>
-rw-r--r-- | drivers/hid/hid-sony.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/hid/hid-sony.c b/drivers/hid/hid-sony.c index e87148dbeb1b..1896c019e302 100644 --- a/drivers/hid/hid-sony.c +++ b/drivers/hid/hid-sony.c @@ -1944,6 +1944,8 @@ static int sony_probe(struct hid_device *hdev, const struct hid_device_id *id) return -ENOMEM; } + spin_lock_init(&sc->lock); + sc->quirks = quirks; hid_set_drvdata(hdev, sc); sc->hdev = hdev; |