Commit 3c4396b4 authored by Wei Yongjun's avatar Wei Yongjun Committed by Dmitry Torokhov

Input: zforce - fix error return code in zforce_start()

The error code was not set if unable to set config, so the error
condition wasn't reflected in the return value. Fix to return a
negative error code from the error handling case instead of 0.
Signed-off-by: default avatarWei Yongjun <yongjun_wei@trendmicro.com.cn>
Acked-by: default avatarHeiko Stuebner <heiko@sntech.de>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent c15bdfd5
......@@ -279,7 +279,8 @@ static int zforce_start(struct zforce_ts *ts)
goto error;
}
if (zforce_setconfig(ts, SETCONFIG_DUALTOUCH)) {
ret = zforce_setconfig(ts, SETCONFIG_DUALTOUCH);
if (ret) {
dev_err(&client->dev, "Unable to set config\n");
goto error;
}
......
Markdown is supported
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