[PATCH] v4l: 761: fixed registry value in em2820

- 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>
This commit is contained in:
Markus Rechberger 2005-11-08 21:37:20 -08:00 committed by Linus Torvalds
parent 18f47d10bc
commit a9ae9fb17b
2 changed files with 20 additions and 21 deletions

View File

@ -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;

View File

@ -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); */
}