Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 13412
b: refs/heads/master
c: 85a2eb0
h: refs/heads/master
v: v3
  • Loading branch information
Mauro Carvalho Chehab authored and Linus Torvalds committed Nov 9, 2005
1 parent c9088ce commit 3d3dc65
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e9d096dc52493228ce1ae0fbed1d2fe0271fbe16
refs/heads/master: 85a2eb07e1a83a9569cdaddcef2db8d70e4fbea9
23 changes: 16 additions & 7 deletions trunk/drivers/media/video/bttv-i2c.c
Original file line number Diff line number Diff line change
Expand Up @@ -291,11 +291,14 @@ static struct i2c_adapter bttv_i2c_adap_hw_template = {
static int attach_inform(struct i2c_client *client)
{
struct bttv *btv = i2c_get_adapdata(client->adapter);
int radio_addr=ADDR_UNSET;
int radio_addr=ADDR_UNSET, addr=ADDR_UNSET;

if (ADDR_UNSET != bttv_tvcards[btv->c.type].radio_addr)
radio_addr = bttv_tvcards[btv->c.type].radio_addr;

if (ADDR_UNSET != bttv_tvcards[btv->c.type].tuner_addr)
addr = bttv_tvcards[btv->c.type].tuner_addr;

if (bttv_debug)
printk(KERN_DEBUG "bttv%d: %s i2c attach [addr=0x%x,client=%s]\n",
btv->c.nr,client->driver->name,client->addr,
Expand All @@ -306,14 +309,20 @@ static int attach_inform(struct i2c_client *client)
if (btv->tuner_type != UNSET) {
struct tuner_setup tun_setup;

tun_setup.mode_mask = T_ANALOG_TV | T_DIGITAL_TV;
tun_setup.type = btv->tuner_type;
tun_setup.addr = ADDR_UNSET;
if ((addr==ADDR_UNSET)||(addr==client->addr)) {
tun_setup.mode_mask = T_ANALOG_TV | T_DIGITAL_TV;
tun_setup.type = btv->tuner_type;
tun_setup.addr = ADDR_UNSET;

if (client->addr == radio_addr)
tun_setup.mode_mask = T_RADIO;
client->driver->command (client, TUNER_SET_TYPE_ADDR, &tun_setup);
}
if ((radio_addr==ADDR_UNSET)||(radio_addr==client->addr)) {
tun_setup.mode_mask = T_RADIO;
tun_setup.type = btv->tuner_type;
tun_setup.addr = ADDR_UNSET;

client->driver->command (client, TUNER_SET_TYPE_ADDR, &tun_setup);
client->driver->command (client, TUNER_SET_TYPE_ADDR, &tun_setup);
}
}

if (btv->pinnacle_id != UNSET)
Expand Down

0 comments on commit 3d3dc65

Please sign in to comment.