Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 192984
b: refs/heads/master
c: b400f09
h: refs/heads/master
v: v3
  • Loading branch information
Dmitri Belimov authored and Mauro Carvalho Chehab committed May 19, 2010
1 parent b67f1b7 commit 0bdc4b8
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b57f432c28403b53a298803272b874c1c333f22e
refs/heads/master: b400f09246247e2c55b116bd7b71da4fb0cb19dc
17 changes: 17 additions & 0 deletions trunk/drivers/media/video/saa7134/saa7134-cards.c
Original file line number Diff line number Diff line change
Expand Up @@ -7366,6 +7366,23 @@ int saa7134_board_init2(struct saa7134_dev *dev)
}
break;
}
case SAA7134_BOARD_BEHOLD_H6:
{
u8 data[] = { 0x09, 0x9f, 0x86, 0x11};
struct i2c_msg msg = {.addr = 0x61, .flags = 0, .buf = data,
.len = sizeof(data)};

/* The tuner TUNER_PHILIPS_FMD1216MEX_MK3 after hardware */
/* start has disabled IF and enabled DVB-T. When saa7134 */
/* scan I2C devices it not detect IF tda9887 and can`t */
/* watch TV without software reboot. For solve this problem */
/* switch the tuner to analog TV mode manually. */
if (i2c_transfer(&dev->i2c_adap, &msg, 1) != 1)
printk(KERN_WARNING
"%s: Unable to enable IF of the tuner.\n",
dev->name);
break;
}
} /* switch() */

/* initialize tuner */
Expand Down

0 comments on commit 0bdc4b8

Please sign in to comment.