Commit 0a2a89c4 authored by Dan Carpenter's avatar Dan Carpenter Committed by Mauro Carvalho Chehab

[media] gspca: sn9c2028: remove an unneeded condition

We already know status is negative because of the earlier check so there
is no need to check again.
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent 387a6924
...@@ -140,7 +140,7 @@ static int sn9c2028_long_command(struct gspca_dev *gspca_dev, u8 *command) ...@@ -140,7 +140,7 @@ static int sn9c2028_long_command(struct gspca_dev *gspca_dev, u8 *command)
status = sn9c2028_read1(gspca_dev); status = sn9c2028_read1(gspca_dev);
if (status < 0) { if (status < 0) {
pr_err("long command status read error %d\n", status); pr_err("long command status read error %d\n", status);
return (status < 0) ? status : -EIO; return status;
} }
memset(reading, 0, 4); memset(reading, 0, 4);
......
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