From 1a0806539e7db818c192c8b9d2f14e2836e202ef Mon Sep 17 00:00:00 2001 From: Gerd Knorr Date: Thu, 3 Feb 2005 11:45:34 +0000 Subject: - fix tda9887 init order bug. --- linux/drivers/media/video/tda9887.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'linux') 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); } -- cgit v1.2.3