[media] cx231xx: fix handling cx231xx_read_i2c_data result
The function can return negative value. The problem has been detected using proposed semantic patch scripts/coccinelle/tests/assign_signed_to_unsigned.cocci [1]. [1]: http://permalink.gmane.org/gmane.linux.kernel/2046107 Signed-off-by: Andrzej Hajda <a.hajda@samsung.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
parent
2788052a8a
commit
e54560d963
1 changed files with 2 additions and 1 deletions
|
@ -1114,7 +1114,8 @@ int cx231xx_enum_input(struct file *file, void *priv,
|
||||||
struct cx231xx_fh *fh = priv;
|
struct cx231xx_fh *fh = priv;
|
||||||
struct cx231xx *dev = fh->dev;
|
struct cx231xx *dev = fh->dev;
|
||||||
u32 gen_stat;
|
u32 gen_stat;
|
||||||
unsigned int ret, n;
|
unsigned int n;
|
||||||
|
int ret;
|
||||||
|
|
||||||
n = i->index;
|
n = i->index;
|
||||||
if (n >= MAX_CX231XX_INPUT)
|
if (n >= MAX_CX231XX_INPUT)
|
||||||
|
|
Loading…
Reference in a new issue