mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-18 19:27:13 +00:00
Input: zinitix - remove unneeded semicolon
Eliminate the following coccicheck warning: ./drivers/input/touchscreen/zinitix.c:164:31-32: Unneeded semicolon Reported-by: Abaci Robot <abaci@linux.alibaba.com> Signed-off-by: Yang Li <yang.lee@linux.alibaba.com> Link: https://lore.kernel.org/r/1612319443-115831-1-git-send-email-yang.lee@linux.alibaba.com Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:
parent
7a6a53b2b1
commit
a374c19f7f
@ -161,7 +161,7 @@ static int zinitix_read_data(struct i2c_client *client,
|
||||
|
||||
ret = i2c_master_recv(client, (u8 *)values, length);
|
||||
if (ret != length)
|
||||
return ret < 0 ? ret : -EIO; ;
|
||||
return ret < 0 ? ret : -EIO;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user