提交 b658912c 编写于 作者: J Jiri Kosina

HID: i2c-hid: fix inverted return value from i2c_hid_command()

i2c_hid_command() returns non-zero in error cases (the actual
errno). Error handling in for I2C_HID_QUIRK_RESEND_REPORT_DESCR
case in i2c_hid_resume() had the check inverted; fix that.

Fixes: 3e83eda4 ("HID: i2c-hid: Fix resume issue on Raydium touchscreen device")
Reported-by: NDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: NJiri Kosina <jkosina@suse.cz>
上级 3e83eda4
...@@ -1229,7 +1229,7 @@ static int i2c_hid_resume(struct device *dev) ...@@ -1229,7 +1229,7 @@ static int i2c_hid_resume(struct device *dev)
*/ */
if (ihid->quirks & I2C_HID_QUIRK_RESEND_REPORT_DESCR) { if (ihid->quirks & I2C_HID_QUIRK_RESEND_REPORT_DESCR) {
ret = i2c_hid_command(client, &hid_report_descr_cmd, NULL, 0); ret = i2c_hid_command(client, &hid_report_descr_cmd, NULL, 0);
if (!ret) if (ret)
return ret; return ret;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册