diff options
author | Gerd Knorr <devnull@localhost> | 2004-12-09 12:51:35 +0000 |
---|---|---|
committer | Gerd Knorr <devnull@localhost> | 2004-12-09 12:51:35 +0000 |
commit | 17d7470d78bd886cab06e6f0848bac4ac8edf1db (patch) | |
tree | 2e681fb9a605d3e2ba2feb0007aec272c8833431 /linux/drivers/media/video/msp3400.c | |
parent | 39aa684c82354e2c6c357eed2fd37c38f29c461f (diff) | |
download | mediapointer-dvb-s2-17d7470d78bd886cab06e6f0848bac4ac8edf1db.tar.gz mediapointer-dvb-s2-17d7470d78bd886cab06e6f0848bac4ac8edf1db.tar.bz2 |
- work on dvb pll stuff.
- misc dvb updates.
- pinnacle 300i stuff (not working yet).
Diffstat (limited to 'linux/drivers/media/video/msp3400.c')
-rw-r--r-- | linux/drivers/media/video/msp3400.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/linux/drivers/media/video/msp3400.c b/linux/drivers/media/video/msp3400.c index 224a0f791..5c4433cf5 100644 --- a/linux/drivers/media/video/msp3400.c +++ b/linux/drivers/media/video/msp3400.c @@ -1504,9 +1504,12 @@ static int msp_attach(struct i2c_adapter *adap, int addr, int kind) msp->opmode = opmode; if (OPMODE_AUTO == msp->opmode) { +#if 0 /* seems to work for ivtv only, disable by default for now ... */ if (HAVE_SIMPLER(msp)) msp->opmode = OPMODE_SIMPLER; - else if (HAVE_SIMPLE(msp)) + else +#endif + if (HAVE_SIMPLE(msp)) msp->opmode = OPMODE_SIMPLE; else msp->opmode = OPMODE_MANUAL; |