summaryrefslogtreecommitdiff
path: root/linux
diff options
context:
space:
mode:
authorGerd Knorr <devnull@localhost>2005-02-03 11:45:34 +0000
committerGerd Knorr <devnull@localhost>2005-02-03 11:45:34 +0000
commit1a0806539e7db818c192c8b9d2f14e2836e202ef (patch)
tree0aa726101bbf643623167155fa54861a5149bf9c /linux
parentb0dc534be911e5799370884fd732a88cc94684d4 (diff)
downloadmediapointer-dvb-s2-1a0806539e7db818c192c8b9d2f14e2836e202ef.tar.gz
mediapointer-dvb-s2-1a0806539e7db818c192c8b9d2f14e2836e202ef.tar.bz2
- fix tda9887 init order bug.
Diffstat (limited to 'linux')
-rw-r--r--linux/drivers/media/video/tda9887.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/linux/drivers/media/video/tda9887.c b/linux/drivers/media/video/tda9887.c
index e30546f4f..aa11ec6cc 100644
--- a/linux/drivers/media/video/tda9887.c
+++ b/linux/drivers/media/video/tda9887.c
@@ -313,9 +313,9 @@ static void dump_write_message(unsigned char *buf)
printk(" B5 force mute audio: %s\n",
(buf[1] & 0x20) ? "yes" : "no");
printk(" B6 output port 1 : %s\n",
- (buf[1] & 0x40) ? "high" : "low");
+ (buf[1] & 0x40) ? "high (inactive)" : "low (active)");
printk(" B7 output port 2 : %s\n",
- (buf[1] & 0x80) ? "high" : "low");
+ (buf[1] & 0x80) ? "high (inactive)" : "low (active)");
printk(PREFIX "write: byte C 0x%02x\n",buf[2]);
printk(" C0-4 top adjustment : %s dB\n", adjust[buf[2] & 0x1f]);
@@ -553,9 +553,9 @@ static int tda9887_configure(struct tda9887 *t)
int rc;
memset(buf,0,sizeof(buf));
+ tda9887_set_tvnorm(t,buf);
buf[1] |= cOutputPort1Inactive;
buf[1] |= cOutputPort2Inactive;
- tda9887_set_tvnorm(t,buf);
if (UNSET != t->pinnacle_id) {
tda9887_set_pinnacle(t,buf);
}