diff options
-rw-r--r-- | linux/drivers/media/video/tda9887.c | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/linux/drivers/media/video/tda9887.c b/linux/drivers/media/video/tda9887.c index 377ac7397..ef13d6786 100644 --- a/linux/drivers/media/video/tda9887.c +++ b/linux/drivers/media/video/tda9887.c @@ -141,7 +141,8 @@ static struct tvnorm tvnorms[] = { { .std = V4L2_STD_PAL_BG, .name = "PAL-BG", - .b = ( cNegativeFmTV ), + .b = ( cNegativeFmTV | + cQSS ), .c = ( cDeemphasisON | cDeemphasis50 ), .e = ( cAudioIF_5_5 | @@ -149,7 +150,8 @@ static struct tvnorm tvnorms[] = { },{ .std = V4L2_STD_PAL_I, .name = "PAL-I", - .b = ( cNegativeFmTV ), + .b = ( cNegativeFmTV | + cQSS ), .c = ( cDeemphasisON | cDeemphasis50 ), .e = ( cAudioIF_6_0 | @@ -157,7 +159,8 @@ static struct tvnorm tvnorms[] = { },{ .std = V4L2_STD_PAL_DK, .name = "PAL-DK", - .b = ( cNegativeFmTV ), + .b = ( cNegativeFmTV | + cQSS ), .c = ( cDeemphasisON | cDeemphasis50 ), .e = ( cAudioIF_6_5 | @@ -165,7 +168,8 @@ static struct tvnorm tvnorms[] = { },{ .std = V4L2_STD_PAL_M | V4L2_STD_PAL_N, .name = "PAL-M/N", - .b = ( cNegativeFmTV ), + .b = ( cNegativeFmTV | + cQSS ), .c = ( cDeemphasisON | cDeemphasis75 ), .e = ( cAudioIF_4_5 | @@ -180,7 +184,8 @@ static struct tvnorm tvnorms[] = { },{ .std = V4L2_STD_SECAM_DK, .name = "SECAM-DK", - .b = ( cNegativeFmTV ), + .b = ( cNegativeFmTV | + cQSS ), .c = ( cDeemphasisON | cDeemphasis50 ), .e = ( cAudioIF_6_5 | @@ -188,7 +193,8 @@ static struct tvnorm tvnorms[] = { },{ .std = V4L2_STD_NTSC_M, .name = "NTSC-M", - .b = ( cNegativeFmTV ), + .b = ( cNegativeFmTV | + cQSS ), .c = ( cDeemphasisON | cDeemphasis50 ), .e = ( cGating_36 | @@ -197,7 +203,8 @@ static struct tvnorm tvnorms[] = { },{ .std = V4L2_STD_NTSC_M_JP, .name = "NTSC-JP", - .b = ( cNegativeFmTV ), + .b = ( cNegativeFmTV | + cQSS ), .c = ( cDeemphasisON | cDeemphasis50 ), .e = ( cGating_36 | |