Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Commit ed1ab6ff authored by Wei Yongjun's avatar Wei Yongjun Committed by Jiri Kosina
Browse files

HID: thrustmaster: fix return value check in thrustmaster_probe()

Fix the return value check which testing the wrong variable
in thrustmaster_probe().

Fixes: c49c3363

 ("HID: support for initialization of some Thrustmaster wheels")
Reported-by: default avatarHulk Robot <hulkci@huawei.com>
Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 25bdbfbb
No related merge requests found
...@@ -312,7 +312,7 @@ static int thrustmaster_probe(struct hid_device *hdev, const struct hid_device_i ...@@ -312,7 +312,7 @@ static int thrustmaster_probe(struct hid_device *hdev, const struct hid_device_i
} }
tm_wheel->change_request = kzalloc(sizeof(struct usb_ctrlrequest), GFP_KERNEL); tm_wheel->change_request = kzalloc(sizeof(struct usb_ctrlrequest), GFP_KERNEL);
if (!tm_wheel->model_request) { if (!tm_wheel->change_request) {
ret = -ENOMEM; ret = -ENOMEM;
goto error5; goto error5;
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment