diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2010-07-30 16:24:54 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-10-20 23:04:51 -0400 |
commit | c4ce6d14b92aa1772c9d84d068d1b45114fe73cc (patch) | |
tree | b2c492597824d43fad603cc686c3d16b3f766b0c /drivers/media/video/soc_camera.c | |
parent | 401ad27867781c327855025d4becd5bc30fe7e42 (diff) |
V4L/DVB: v4l: Use v4l2_get_subdevdata instead of accessing v4l2_subdev::priv
Replace direct access to the v4l2_subdev priv field with the inline
v4l2_get_subdevdata method.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/soc_camera.c')
-rw-r--r-- | drivers/media/video/soc_camera.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/soc_camera.c b/drivers/media/video/soc_camera.c index a499cacec1f3..a55d6dc4c6bd 100644 --- a/drivers/media/video/soc_camera.c +++ b/drivers/media/video/soc_camera.c | |||
@@ -902,7 +902,7 @@ static int soc_camera_init_i2c(struct soc_camera_device *icd, | |||
902 | if (!subdev) | 902 | if (!subdev) |
903 | goto ei2cnd; | 903 | goto ei2cnd; |
904 | 904 | ||
905 | client = subdev->priv; | 905 | client = v4l2_get_subdevdata(subdev); |
906 | 906 | ||
907 | /* Use to_i2c_client(dev) to recover the i2c client */ | 907 | /* Use to_i2c_client(dev) to recover the i2c client */ |
908 | dev_set_drvdata(&icd->dev, &client->dev); | 908 | dev_set_drvdata(&icd->dev, &client->dev); |