summaryrefslogtreecommitdiff
path: root/linux
diff options
context:
space:
mode:
authorHartmut Hackmann <hartmut.hackmann@t-online.de>2006-10-03 02:00:32 +0200
committerHartmut Hackmann <hartmut.hackmann@t-online.de>2006-10-03 02:00:32 +0200
commitaa93beda78456b2dc3404cfce3d55234677ffedc (patch)
tree9a0825ce0d7b94d9a6e2234645fdd12ecfd22f03 /linux
parent38ab855d48c28cbd2b1827d24fcd3e30d9419b92 (diff)
downloadmediapointer-dvb-s2-aa93beda78456b2dc3404cfce3d55234677ffedc.tar.gz
mediapointer-dvb-s2-aa93beda78456b2dc3404cfce3d55234677ffedc.tar.bz2
SAA713x: fixed compile warning in SECAM fixup
From: Hartmut Hackmann <hartmut.hackmann@t-online.de> The variable fixup could be used uninitialized. Signed-off-by: Hartmut Hackmann <hartmut.hackmann@t-online.de>
Diffstat (limited to 'linux')
-rw-r--r--linux/drivers/media/video/saa7134/saa7134-video.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/linux/drivers/media/video/saa7134/saa7134-video.c b/linux/drivers/media/video/saa7134/saa7134-video.c
index 4e3d73089..ca42682f9 100644
--- a/linux/drivers/media/video/saa7134/saa7134-video.c
+++ b/linux/drivers/media/video/saa7134/saa7134-video.c
@@ -1828,15 +1828,18 @@ static int video_do_ioctl(struct inode *inode, struct file *file,
break;
if (i == TVNORMS)
return -EINVAL;
- if (*id & V4L2_STD_SECAM) {
- if (secam[0] == 'L' || secam[0] == 'l')
+ if ((*id & V4L2_STD_SECAM) && (secam[0] != '-')) {
+ if (secam[0] == 'L' || secam[0] == 'l') {
if (secam[1] == 'C' || secam[1] == 'c')
fixup = V4L2_STD_SECAM_LC;
else
fixup = V4L2_STD_SECAM_L;
- else
+ } else {
if (secam[0] == 'D' || secam[0] == 'd')
fixup = V4L2_STD_SECAM_DK;
+ else
+ fixup = V4L2_STD_SECAM;
+ }
for (i = 0; i < TVNORMS; i++)
if (fixup == tvnorms[i].id)
break;