Commit 836f308c authored by Dmitry Torokhov's avatar Dmitry Torokhov

Input: zinitix - fix return type of zinitix_init_touch()

zinitix_init_touch() returns error code or 0 for success and therefore
return type must be int, not bool.

Fixes: 26822652 ("Input: add zinitix touchscreen driver")
Reported-by: default avatarkernel test robot <lkp@intel.com>
Reported-by: default avatarJiapeng Chong <jiapeng.chong@linux.alibaba.com>
Link: https://lore.kernel.org/r/YC8z2bXc3Oy8pABa@google.comSigned-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent b5d6e7ab
...@@ -190,7 +190,7 @@ static int zinitix_write_cmd(struct i2c_client *client, u16 reg) ...@@ -190,7 +190,7 @@ static int zinitix_write_cmd(struct i2c_client *client, u16 reg)
return 0; return 0;
} }
static bool zinitix_init_touch(struct bt541_ts_data *bt541) static int zinitix_init_touch(struct bt541_ts_data *bt541)
{ {
struct i2c_client *client = bt541->client; struct i2c_client *client = bt541->client;
int i; int i;
......
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