[media] cx24120: don't initialize a var that won't be used
authorMauro Carvalho Chehab <mchehab@osg.samsung.com>
Tue, 19 May 2015 11:04:35 +0000 (08:04 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Wed, 20 May 2015 11:54:29 +0000 (08:54 -0300)
commit65b01665a98a8738371d945230f4bd6fb41a3594
treea96d7de90cd26ed13ac4628fae8efa3ddb296f28
parent5c0a1c28c064e5998f6d6f48826e9701e9f68af2
[media] cx24120: don't initialize a var that won't be used

As reported by smatch:
drivers/media/dvb-frontends/cx24120.c: In function 'cx24120_message_send':
drivers/media/dvb-frontends/cx24120.c:368:6: warning: variable 'ret' set but not used [-Wunused-but-set-variable]
  int ret, ficus;
      ^

The values written by cx24120 are never checked. So, remove the
check here too. That's said, the best would be to do the reverse,
but globally: to properly handle the error codes.

Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Signed-off-by: Patrick Boettcher <patrick.boettcher@posteo.de>
drivers/media/dvb-frontends/cx24120.c