diff options
author | Hans Verkuil <hans.verkuil@cisco.com> | 2013-03-24 07:28:46 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2013-03-24 07:47:01 -0400 |
commit | 977ba3b1b73f24fae2d0c8bd59d7a4696f1e0ccc (patch) | |
tree | 8a30d06717aacc154e851868c40e2596c3a572be /drivers/media/i2c/tvp7002.c | |
parent | b5656e8b7363c4e248e6372dc34828d3dfb17832 (diff) |
[media] v4l2: add const to argument of write-only s_register ioctl
This ioctl is defined as IOW, so pass the argument as const.
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Acked-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Acked-by: Lad, Prabhakar <prabhakar.csengg@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/i2c/tvp7002.c')
-rw-r--r-- | drivers/media/i2c/tvp7002.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/i2c/tvp7002.c b/drivers/media/i2c/tvp7002.c index 7406de9b45db..027809cca5f5 100644 --- a/drivers/media/i2c/tvp7002.c +++ b/drivers/media/i2c/tvp7002.c | |||
@@ -768,7 +768,7 @@ static int tvp7002_g_register(struct v4l2_subdev *sd, | |||
768 | * -EPERM if call not allowed. | 768 | * -EPERM if call not allowed. |
769 | */ | 769 | */ |
770 | static int tvp7002_s_register(struct v4l2_subdev *sd, | 770 | static int tvp7002_s_register(struct v4l2_subdev *sd, |
771 | struct v4l2_dbg_register *reg) | 771 | const struct v4l2_dbg_register *reg) |
772 | { | 772 | { |
773 | struct i2c_client *client = v4l2_get_subdevdata(sd); | 773 | struct i2c_client *client = v4l2_get_subdevdata(sd); |
774 | 774 | ||