Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 21666
b: refs/heads/master
c: 20b5ee5
h: refs/heads/master
v: v3
  • Loading branch information
Curt Meyers authored and Mauro Carvalho Chehab committed Feb 27, 2006
1 parent e9c8c23 commit 47a5a6e
Show file tree
Hide file tree
Showing 2 changed files with 13 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: ccb1ef199162754e80c27e5b7d20817eb73a0eab
refs/heads/master: 20b5ee5d491238b8de7ba0c06945d8e3935d42e6
12 changes: 12 additions & 0 deletions trunk/drivers/media/video/saa7134/saa7134-cards.c
Original file line number Diff line number Diff line change
Expand Up @@ -3549,6 +3549,18 @@ int saa7134_board_init2(struct saa7134_dev *dev)
i2c_transfer(&dev->i2c_adap, &msg, 1);
}
break;
case SAA7134_BOARD_KWORLD_ATSC110:
{
/* enable tuner */
int i;
u8 buffer [] = { 0x10,0x12,0x13,0x04,0x16,0x00,0x14,0x04,0x017,0x00 };
dev->i2c_client.addr = 0x0a;
for (i = 0; i < 5; i++)
if (2 != i2c_master_send(&dev->i2c_client,&buffer[i*2],2))
printk(KERN_WARNING "%s: Unable to enable tuner(%i).\n",
dev->name, i);
}
break;
}
return 0;
}
Expand Down

0 comments on commit 47a5a6e

Please sign in to comment.