summaryrefslogtreecommitdiffstats
path: root/drivers/media
diff options
context:
space:
mode:
authorHans Verkuil2010-12-31 16:26:53 +0100
committerMauro Carvalho Chehab2011-01-04 19:47:45 +0100
commit0c8fc77e481a3bfc243336085a3fe1fc71f9c1fb (patch)
tree78aff5a9aea804fab37fec93e9cc0b495ad3d0e4 /drivers/media
parent[media] ngene: fix compile warning (diff)
downloadkernel-qcow2-linux-0c8fc77e481a3bfc243336085a3fe1fc71f9c1fb.tar.gz
kernel-qcow2-linux-0c8fc77e481a3bfc243336085a3fe1fc71f9c1fb.tar.xz
kernel-qcow2-linux-0c8fc77e481a3bfc243336085a3fe1fc71f9c1fb.zip
[media] tda18218: fix compile warning
drivers/media/common/tuners/tda18218.c: In function 'tda18218_wr_regs': drivers/media/common/tuners/tda18218.c:58:5: warning: 'ret' may be used uninitialized in this function Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media')
-rw-r--r--drivers/media/common/tuners/tda18218.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/common/tuners/tda18218.c b/drivers/media/common/tuners/tda18218.c
index 8da1fdeddaa7..aacfe2387e28 100644
--- a/drivers/media/common/tuners/tda18218.c
+++ b/drivers/media/common/tuners/tda18218.c
@@ -28,7 +28,7 @@ MODULE_PARM_DESC(debug, "Turn on/off debugging (default:off).");
/* write multiple registers */
static int tda18218_wr_regs(struct tda18218_priv *priv, u8 reg, u8 *val, u8 len)
{
- int ret;
+ int ret = 0;
u8 buf[1+len], quotient, remainder, i, msg_len, msg_len_max;
struct i2c_msg msg[1] = {
{