diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2009-04-01 02:57:53 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-04-06 20:44:24 -0400 |
commit | e6574f2fbecdb8af807169d345c10131ae060a88 (patch) | |
tree | 9923d1065397b9796a476cac238bacbdf1d820d1 /drivers/media/video/vino.c | |
parent | 868f985c2fb85b5f32785bb55a349d180a30f3d3 (diff) |
V4L/DVB (11373): v4l2-common: add explicit v4l2_device pointer as first arg to new_(probed)_subdev
The functions v4l2_i2c_new_subdev and v4l2_i2c_new_probed_subdev relied on
i2c_get_adapdata to return the v4l2_device. However, this is not always
possible on embedded platforms. So modify the API to pass the v4l2_device
pointer explicitly.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/vino.c')
-rw-r--r-- | drivers/media/video/vino.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/media/video/vino.c b/drivers/media/video/vino.c index c39a2d4d5178..94343758ff5f 100644 --- a/drivers/media/video/vino.c +++ b/drivers/media/video/vino.c | |||
@@ -4337,11 +4337,13 @@ static int __init vino_module_init(void) | |||
4337 | vino_init_stage++; | 4337 | vino_init_stage++; |
4338 | 4338 | ||
4339 | addr[0] = 0x45; | 4339 | addr[0] = 0x45; |
4340 | vino_drvdata->decoder = v4l2_i2c_new_probed_subdev(&vino_i2c_adapter, | 4340 | vino_drvdata->decoder = |
4341 | "saa7191", "saa7191", addr); | 4341 | v4l2_i2c_new_probed_subdev(&vino_drvdata->v4l2_dev, |
4342 | &vino_i2c_adapter, "saa7191", "saa7191", addr); | ||
4342 | addr[0] = 0x2b; | 4343 | addr[0] = 0x2b; |
4343 | vino_drvdata->camera = v4l2_i2c_new_probed_subdev(&vino_i2c_adapter, | 4344 | vino_drvdata->camera = |
4344 | "indycam", "indycam", addr); | 4345 | v4l2_i2c_new_probed_subdev(&vino_drvdata->v4l2_dev, |
4346 | &vino_i2c_adapter, "indycam", "indycam", addr); | ||
4345 | 4347 | ||
4346 | dprintk("init complete!\n"); | 4348 | dprintk("init complete!\n"); |
4347 | 4349 | ||