diff options
Diffstat (limited to 'drivers/media/video/bttv-cards.c')
-rw-r--r-- | drivers/media/video/bttv-cards.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/media/video/bttv-cards.c b/drivers/media/video/bttv-cards.c index 2dbf5ec43abd..a97b9b958ed6 100644 --- a/drivers/media/video/bttv-cards.c +++ b/drivers/media/video/bttv-cards.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | $Id: bttv-cards.c,v 1.53 2005/07/05 17:37:35 nsh Exp $ | 2 | $Id: bttv-cards.c,v 1.54 2005/07/19 18:26:46 mkrufky Exp $ |
3 | 3 | ||
4 | bttv-cards.c | 4 | bttv-cards.c |
5 | 5 | ||
@@ -95,7 +95,7 @@ static int __devinit pvr_boot(struct bttv *btv); | |||
95 | static unsigned int triton1=0; | 95 | static unsigned int triton1=0; |
96 | static unsigned int vsfx=0; | 96 | static unsigned int vsfx=0; |
97 | static unsigned int latency = UNSET; | 97 | static unsigned int latency = UNSET; |
98 | static unsigned int no_overlay=-1; | 98 | int no_overlay=-1; |
99 | 99 | ||
100 | static unsigned int card[BTTV_MAX] = { [ 0 ... (BTTV_MAX-1) ] = UNSET }; | 100 | static unsigned int card[BTTV_MAX] = { [ 0 ... (BTTV_MAX-1) ] = UNSET }; |
101 | static unsigned int pll[BTTV_MAX] = { [ 0 ... (BTTV_MAX-1) ] = UNSET }; | 101 | static unsigned int pll[BTTV_MAX] = { [ 0 ... (BTTV_MAX-1) ] = UNSET }; |
@@ -2772,8 +2772,6 @@ void __devinit bttv_init_card2(struct bttv *btv) | |||
2772 | } | 2772 | } |
2773 | btv->pll.pll_current = -1; | 2773 | btv->pll.pll_current = -1; |
2774 | 2774 | ||
2775 | bttv_reset_audio(btv); | ||
2776 | |||
2777 | /* tuner configuration (from card list / autodetect / insmod option) */ | 2775 | /* tuner configuration (from card list / autodetect / insmod option) */ |
2778 | if (UNSET != bttv_tvcards[btv->c.type].tuner_type) | 2776 | if (UNSET != bttv_tvcards[btv->c.type].tuner_type) |
2779 | if(UNSET == btv->tuner_type) | 2777 | if(UNSET == btv->tuner_type) |
@@ -4298,9 +4296,11 @@ void __devinit bttv_check_chipset(void) | |||
4298 | printk(KERN_INFO "bttv: Host bridge needs VSFX enabled.\n"); | 4296 | printk(KERN_INFO "bttv: Host bridge needs VSFX enabled.\n"); |
4299 | if (pcipci_fail) { | 4297 | if (pcipci_fail) { |
4300 | printk(KERN_WARNING "bttv: BT848 and your chipset may not work together.\n"); | 4298 | printk(KERN_WARNING "bttv: BT848 and your chipset may not work together.\n"); |
4301 | if (UNSET == no_overlay) { | 4299 | if (!no_overlay) { |
4302 | printk(KERN_WARNING "bttv: going to disable overlay.\n"); | 4300 | printk(KERN_WARNING "bttv: overlay will be disabled.\n"); |
4303 | no_overlay = 1; | 4301 | no_overlay = 1; |
4302 | } else { | ||
4303 | printk(KERN_WARNING "bttv: overlay forced. Use this option at your own risk.\n"); | ||
4304 | } | 4304 | } |
4305 | } | 4305 | } |
4306 | if (UNSET != latency) | 4306 | if (UNSET != latency) |