diff options
author | Mauro Carvalho Chehab <devnull@localhost> | 2005-07-01 21:41:37 +0000 |
---|---|---|
committer | Mauro Carvalho Chehab <devnull@localhost> | 2005-07-01 21:41:37 +0000 |
commit | 7ec342b15ef8e7895e80aac79f3ae7c93f21e68c (patch) | |
tree | 7515ab16ec6bf5fdc288b32e93e74b37d92b3315 | |
parent | b7f8945ae633e4b55dc87fd8dbb305ef0c68aaa2 (diff) | |
download | mediapointer-dvb-s2-7ec342b15ef8e7895e80aac79f3ae7c93f21e68c.tar.gz mediapointer-dvb-s2-7ec342b15ef8e7895e80aac79f3ae7c93f21e68c.tar.bz2 |
* tuner-core.c:
- It looks that I2C trouble was fixed. Still requires futher
analysis.
Signed-off-by: Chris Pitchford <bttv@intrepid.cx>
Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
-rw-r--r-- | linux/drivers/media/video/tuner-core.c | 4 | ||||
-rw-r--r-- | v4l/ChangeLog | 9 |
2 files changed, 12 insertions, 1 deletions
diff --git a/linux/drivers/media/video/tuner-core.c b/linux/drivers/media/video/tuner-core.c index 624430722..69e7784c1 100644 --- a/linux/drivers/media/video/tuner-core.c +++ b/linux/drivers/media/video/tuner-core.c @@ -1,5 +1,5 @@ /* - * $Id: tuner-core.c,v 1.40 2005/07/01 20:13:29 mchehab Exp $ + * $Id: tuner-core.c,v 1.41 2005/07/01 21:41:37 mchehab Exp $ * * i2c tv tuner chip device driver * core core, i.e. kernel interfaces, registering and so on @@ -357,6 +357,7 @@ static int tuner_attach(struct i2c_adapter *adap, int addr, int kind) /* Should be just before return */ i2c_attach_client(&t->i2c); + set_type(&t->i2c,t->type, t->admin_status); return 0; } } @@ -370,6 +371,7 @@ static int tuner_attach(struct i2c_adapter *adap, int addr, int kind) /* Should be just before return */ i2c_attach_client(&t->i2c); + set_type(&t->i2c,t->type, t->admin_status); return 0; } diff --git a/v4l/ChangeLog b/v4l/ChangeLog index 0244f2ad7..55292a1dc 100644 --- a/v4l/ChangeLog +++ b/v4l/ChangeLog @@ -1,3 +1,12 @@ +2005-06-01 21:38 mchehab + * tuner-core.c: + + - It looks that I2C trouble was fixed. Still requires futher + analysis. + + Signed-off-by: Chris Pitchford <bttv@intrepid.cx> + Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> + 2005-06-01 20:40 mchehab * tuner-core.c: |