diff --git a/[refs] b/[refs] index 035f44de6799..b90e72850950 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 47cc5b78102b4e9993ea1c054b4f077cf7aac7db +refs/heads/master: e155d908f72cc429b538c101ee8ffcd10a44b69b diff --git a/trunk/drivers/media/video/tuner-xc2028.c b/trunk/drivers/media/video/tuner-xc2028.c index 6e23fad0e560..166fede7d0e3 100644 --- a/trunk/drivers/media/video/tuner-xc2028.c +++ b/trunk/drivers/media/video/tuner-xc2028.c @@ -200,17 +200,17 @@ void dump_firm_type(unsigned int type) static v4l2_std_id parse_audio_std_option(void) { - if (strcasecmp(audio_std, "A2")) + if (strcasecmp(audio_std, "A2") == 0) return V4L2_STD_A2; - if (strcasecmp(audio_std, "A2/A")) + if (strcasecmp(audio_std, "A2/A") == 0) return V4L2_STD_A2_A; - if (strcasecmp(audio_std, "A2/B")) + if (strcasecmp(audio_std, "A2/B") == 0) return V4L2_STD_A2_B; - if (strcasecmp(audio_std, "NICAM")) + if (strcasecmp(audio_std, "NICAM") == 0) return V4L2_STD_NICAM; - if (strcasecmp(audio_std, "NICAM/A")) + if (strcasecmp(audio_std, "NICAM/A") == 0) return V4L2_STD_NICAM_A; - if (strcasecmp(audio_std, "NICAM/B")) + if (strcasecmp(audio_std, "NICAM/B") == 0) return V4L2_STD_NICAM_B; return 0;