Skip to content

Commit

Permalink
[PATCH] v4l: 761: fixed registry value in em2820
Browse files Browse the repository at this point in the history
- Fixed registry value in em2820-i2c.c which corrects a tuner setting (also
  removed that call from em2820-video.c)

Signed-off-by: Markus Rechberger <mrechberger@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Markus Rechberger authored and Linus Torvalds committed Nov 9, 2005
1 parent 18f47d1 commit a9ae9fb
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 21 deletions.
40 changes: 20 additions & 20 deletions drivers/media/video/em28xx/em28xx-i2c.c
Original file line number Diff line number Diff line change
Expand Up @@ -302,26 +302,26 @@ static int attach_inform(struct i2c_client *client)

dprintk("address %x", client->addr << 1);
switch (client->addr << 1) {
case 0x68:
em2820_i2c_call_clients(dev, TDA9887_SET_CONFIG, &dev->tda9887_conf);
break;
case 0x4a:
dprintk1("attach_inform: saa7113 detected.\n");
break;
case 0xa0:
dprintk1("attach_inform: eeprom detected.\n");
break;
case 0x80:
case 0x88:
dprintk1("attach_inform: msp34xx detected.\n");
break;
case 0xb8:
case 0xba:
dprintk1("attach_inform: tvp5150 detected.\n");
break;
default:
dev->tuner_addr = client->addr;
em2820_set_tuner(-1, client);
case 0x86:
em2820_i2c_call_clients(dev, TDA9887_SET_CONFIG, &dev->tda9887_conf);
break;
case 0x4a:
dprintk1("attach_inform: saa7113 detected.\n");
break;
case 0xa0:
dprintk1("attach_inform: eeprom detected.\n");
break;
case 0x80:
case 0x88:
dprintk1("attach_inform: msp34xx detected.\n");
break;
case 0xb8:
case 0xba:
dprintk1("attach_inform: tvp5150 detected.\n");
break;
default:
dev->tuner_addr = client->addr;
em2820_set_tuner(-1, client);
}

return 0;
Expand Down
1 change: 0 additions & 1 deletion drivers/media/video/em28xx/em28xx-video.c
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,6 @@ void em2820_config_i2c(struct em2820 *dev)

/* configure tda9887 */

em2820_i2c_call_clients(dev, TDA9887_SET_CONFIG, &dev->tda9887_conf);

/* em2820_i2c_call_clients(dev,VIDIOC_S_STD,&dev->tvnorm->id); */
}
Expand Down

0 comments on commit a9ae9fb

Please sign in to comment.