Skip to content

Commit

Permalink
[media] v4l2: make vidioc_s_audout const
Browse files Browse the repository at this point in the history
Write-only ioctls should have a const argument in the ioctl op.
Do this conversion for vidioc_s_audout.
Adding const for write-only ioctls was decided during the 2012 Media Workshop.

Signed-off-by: Hans Verkuil <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
  • Loading branch information
Hans Verkuil authored and Mauro Carvalho Chehab committed Sep 26, 2012
1 parent 0e8025b commit ba9425b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions drivers/media/pci/ivtv/ivtv-ioctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -813,11 +813,13 @@ static int ivtv_g_audout(struct file *file, void *fh, struct v4l2_audioout *vin)
return ivtv_get_audio_output(itv, vin->index, vin);
}

static int ivtv_s_audout(struct file *file, void *fh, struct v4l2_audioout *vout)
static int ivtv_s_audout(struct file *file, void *fh, const struct v4l2_audioout *vout)
{
struct ivtv *itv = fh2id(fh)->itv;

return ivtv_get_audio_output(itv, vout->index, vout);
if (itv->card->video_outputs == NULL || vout->index != 0)
return -EINVAL;
return 0;
}

static int ivtv_enum_input(struct file *file, void *fh, struct v4l2_input *vin)
Expand Down
2 changes: 1 addition & 1 deletion drivers/media/radio/radio-si4713.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ static int radio_si4713_g_audout(struct file *file, void *priv,
}

static int radio_si4713_s_audout(struct file *file, void *priv,
struct v4l2_audioout *vao)
const struct v4l2_audioout *vao)
{
return vao->index ? -EINVAL : 0;
}
Expand Down
2 changes: 1 addition & 1 deletion include/media/v4l2-ioctl.h
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ struct v4l2_ioctl_ops {
int (*vidioc_g_audout) (struct file *file, void *fh,
struct v4l2_audioout *a);
int (*vidioc_s_audout) (struct file *file, void *fh,
struct v4l2_audioout *a);
const struct v4l2_audioout *a);
int (*vidioc_g_modulator) (struct file *file, void *fh,
struct v4l2_modulator *a);
int (*vidioc_s_modulator) (struct file *file, void *fh,
Expand Down

0 comments on commit ba9425b

Please sign in to comment.