diff options
author | Gerd Knorr <devnull@localhost> | 2004-07-14 12:42:17 +0000 |
---|---|---|
committer | Gerd Knorr <devnull@localhost> | 2004-07-14 12:42:17 +0000 |
commit | 20718e358d4289ff8df347b8361c55f1c2809a49 (patch) | |
tree | db0ab0245d4d43ff06b343b9cc5c37d48e98a3a1 /linux/drivers/media/video | |
parent | f27616616f804e6941caddcd3c45446b5298579a (diff) | |
download | mediapointer-dvb-s2-20718e358d4289ff8df347b8361c55f1c2809a49.tar.gz mediapointer-dvb-s2-20718e358d4289ff8df347b8361c55f1c2809a49.tar.bz2 |
- saa7134: add some printks with config hints.
Diffstat (limited to 'linux/drivers/media/video')
-rw-r--r-- | linux/drivers/media/video/saa7134/saa7134-cards.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/linux/drivers/media/video/saa7134/saa7134-cards.c b/linux/drivers/media/video/saa7134/saa7134-cards.c index 79c79a994..7cc6a8b6b 100644 --- a/linux/drivers/media/video/saa7134/saa7134-cards.c +++ b/linux/drivers/media/video/saa7134/saa7134-cards.c @@ -1341,6 +1341,7 @@ static struct { static void board_flyvideo(struct saa7134_dev *dev) { #if 0 + /* non-working attempt to detect the correct tuner type ... */ u32 value; int index; @@ -1351,6 +1352,10 @@ static void board_flyvideo(struct saa7134_dev *dev) fly_list[index].tuner_type); dev->tuner_type = fly_list[index].tuner_type; #endif + printk("%s: there are different flyvideo cards with different tuners\n" + "%s: out there, you might have to use the tuner=<nr> insmod\n" + "%s: option to override the default value.\n", + dev->name, dev->name, dev->name); } /* ----------------------------------------------------------- */ @@ -1366,6 +1371,7 @@ int saa7134_board_init(struct saa7134_dev *dev) case SAA7134_BOARD_FLYVIDEO2000: case SAA7134_BOARD_FLYVIDEO3000: dev->has_remote = 1; + /* fall throuth */ case SAA7134_BOARD_FLYTVPLATINUM: board_flyvideo(dev); break; @@ -1378,6 +1384,12 @@ int saa7134_board_init(struct saa7134_dev *dev) case SAA7134_BOARD_AVACSSMARTTV: dev->has_remote = 1; break; + case SAA7134_BOARD_MD5044: + printk("%s: seems there are two different versions of the MD5044\n" + "%s: (with the same ID) out there. If sound doesn't work for\n" + "%s: you try the audio_clock_override=0x200000 insmod option.\n", + dev->name,dev->name,dev->name); + break; } return 0; } |