summaryrefslogtreecommitdiff
path: root/linux/drivers/media/video/bttv-cards.c
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <devnull@localhost>2005-08-03 20:21:15 +0000
committerMauro Carvalho Chehab <devnull@localhost>2005-08-03 20:21:15 +0000
commit34d4ff69451a3664a5e6ca3198499181c8600f72 (patch)
treecb963993dde8973acd3a38fb2f2c33e669cdbc24 /linux/drivers/media/video/bttv-cards.c
parent68c88c106593cfdc90be2ca94db91cc51685c6ee (diff)
downloadmediapointer-dvb-s2-34d4ff69451a3664a5e6ca3198499181c8600f72.tar.gz
mediapointer-dvb-s2-34d4ff69451a3664a5e6ca3198499181c8600f72.tar.bz2
* bttv-cards.c, bttv-driver.c:
- no_overlay now behaves as described on docs. * doc/insmod-options: - no_overlay flag description updated. Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Diffstat (limited to 'linux/drivers/media/video/bttv-cards.c')
-rw-r--r--linux/drivers/media/video/bttv-cards.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/linux/drivers/media/video/bttv-cards.c b/linux/drivers/media/video/bttv-cards.c
index 85138fb8b..f81c10e0a 100644
--- a/linux/drivers/media/video/bttv-cards.c
+++ b/linux/drivers/media/video/bttv-cards.c
@@ -1,5 +1,5 @@
/*
- $Id: bttv-cards.c,v 1.63 2005/08/03 03:23:41 mchehab Exp $
+ $Id: bttv-cards.c,v 1.64 2005/08/03 20:21:15 mchehab Exp $
bttv-cards.c
@@ -98,7 +98,7 @@ static int __devinit pvr_boot(struct bttv *btv);
static unsigned int triton1=0;
static unsigned int vsfx=0;
static unsigned int latency = UNSET;
-unsigned int no_overlay=0;
+unsigned int no_overlay=-1;
static unsigned int card[BTTV_MAX] = { [ 0 ... (BTTV_MAX-1) ] = UNSET };
static unsigned int pll[BTTV_MAX] = { [ 0 ... (BTTV_MAX-1) ] = UNSET };
@@ -4592,6 +4592,8 @@ void __devinit bttv_check_chipset(void)
if (!no_overlay) {
printk(KERN_WARNING "bttv: going to disable overlay.\n");
no_overlay = 1;
+ } else {
+ printk(KERN_WARNING "bttv: overlay forced. You may suffer some OOPS.\n");
}
}
if (UNSET != latency)