aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/cx231xx
diff options
context:
space:
mode:
authorHans Verkuil <hverkuil@xs4all.nl>2009-06-20 09:21:37 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-06-23 03:14:52 -0300
commitaad40d3d0cd9b679e83f6a902ad1e2b8f7b4c9bb (patch)
treeb7efc5a124e98e080c69334145e13a6e49b45c5c /drivers/media/video/cx231xx
parentV4L/DVB (12111): tcm825x: remove incorrect __exit_p wrapper (diff)
downloadlinux-dev-aad40d3d0cd9b679e83f6a902ad1e2b8f7b4c9bb.tar.xz
linux-dev-aad40d3d0cd9b679e83f6a902ad1e2b8f7b4c9bb.zip
V4L/DVB (12112): cx231xx: fix uninitialized variable.
The variable 'rc' could be used uninitialized in the cx231xx_capture_start function. Sri informed me that it should be initialized to -1. Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/cx231xx')
-rw-r--r--drivers/media/video/cx231xx/cx231xx-avcore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/cx231xx/cx231xx-avcore.c b/drivers/media/video/cx231xx/cx231xx-avcore.c
index 6a9464079b4c..96f07d1473fb 100644
--- a/drivers/media/video/cx231xx/cx231xx-avcore.c
+++ b/drivers/media/video/cx231xx/cx231xx-avcore.c
@@ -2055,7 +2055,7 @@ int cx231xx_initialize_stream_xfer(struct cx231xx *dev, u32 media_type)
int cx231xx_capture_start(struct cx231xx *dev, int start, u8 media_type)
{
- int rc;
+ int rc = -1;
u32 ep_mask = -1;
struct pcb_config *pcb_config;