diff options
Diffstat (limited to 'drivers/media/video/tda9887.c')
-rw-r--r-- | drivers/media/video/tda9887.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/drivers/media/video/tda9887.c b/drivers/media/video/tda9887.c index 79e0bd1aa70f..0456dda2624d 100644 --- a/drivers/media/video/tda9887.c +++ b/drivers/media/video/tda9887.c | |||
@@ -23,6 +23,7 @@ | |||
23 | TDA9887 (world), TDA9885 (USA) | 23 | TDA9887 (world), TDA9885 (USA) |
24 | Note: OP2 of tda988x must be set to 1, else MT2032 is disabled! | 24 | Note: OP2 of tda988x must be set to 1, else MT2032 is disabled! |
25 | - KNC One TV-Station RDS (saa7134) | 25 | - KNC One TV-Station RDS (saa7134) |
26 | - Hauppauge PVR-150/500 (possibly more) | ||
26 | */ | 27 | */ |
27 | 28 | ||
28 | 29 | ||
@@ -519,6 +520,12 @@ static int tda9887_fixup_std(struct tda9887 *t) | |||
519 | dprintk(PREFIX "insmod fixup: PAL => PAL-DK\n"); | 520 | dprintk(PREFIX "insmod fixup: PAL => PAL-DK\n"); |
520 | t->std = V4L2_STD_PAL_DK; | 521 | t->std = V4L2_STD_PAL_DK; |
521 | break; | 522 | break; |
523 | case '-': | ||
524 | /* default parameter, do nothing */ | ||
525 | break; | ||
526 | default: | ||
527 | printk(PREFIX "pal= argument not recognised\n"); | ||
528 | break; | ||
522 | } | 529 | } |
523 | } | 530 | } |
524 | if ((t->std & V4L2_STD_SECAM) == V4L2_STD_SECAM) { | 531 | if ((t->std & V4L2_STD_SECAM) == V4L2_STD_SECAM) { |
@@ -535,6 +542,12 @@ static int tda9887_fixup_std(struct tda9887 *t) | |||
535 | dprintk(PREFIX "insmod fixup: SECAM => SECAM-L\n"); | 542 | dprintk(PREFIX "insmod fixup: SECAM => SECAM-L\n"); |
536 | t->std = V4L2_STD_SECAM_L; | 543 | t->std = V4L2_STD_SECAM_L; |
537 | break; | 544 | break; |
545 | case '-': | ||
546 | /* default parameter, do nothing */ | ||
547 | break; | ||
548 | default: | ||
549 | printk(PREFIX "secam= argument not recognised\n"); | ||
550 | break; | ||
538 | } | 551 | } |
539 | } | 552 | } |
540 | return 0; | 553 | return 0; |