Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 366894
b: refs/heads/master
c: 6d43be7
h: refs/heads/master
v: v3
  • Loading branch information
Mauro Carvalho Chehab committed Mar 29, 2013
1 parent 7eb50b7 commit 1f45f63
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2f9e96c39fb4cc0680ccf2ec155133249174780c
refs/heads/master: 6d43be7789db0455a82a3ad4ff5f713cc588c1e2
2 changes: 1 addition & 1 deletion trunk/drivers/media/pci/cx18/cx18-ioctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -1110,7 +1110,7 @@ static int cx18_log_status(struct file *file, void *fh)
}

static long cx18_default(struct file *file, void *fh, bool valid_prio,
int cmd, void *arg)
unsigned int cmd, void *arg)
{
struct cx18 *cx = fh2id(fh)->cx;

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/media/pci/ivtv/ivtv-ioctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -1807,7 +1807,7 @@ static int ivtv_decoder_ioctls(struct file *filp, unsigned int cmd, void *arg)
}

static long ivtv_default(struct file *file, void *fh, bool valid_prio,
int cmd, void *arg)
unsigned int cmd, void *arg)
{
struct ivtv *itv = fh2id(fh)->itv;

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/media/pci/meye/meye.c
Original file line number Diff line number Diff line change
Expand Up @@ -1410,7 +1410,7 @@ static int vidioc_streamoff(struct file *file, void *fh, enum v4l2_buf_type i)
}

static long vidioc_default(struct file *file, void *fh, bool valid_prio,
int cmd, void *arg)
unsigned int cmd, void *arg)
{
switch (cmd) {
case MEYEIOC_G_PARAMS:
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/media/platform/davinci/vpfe_capture.c
Original file line number Diff line number Diff line change
Expand Up @@ -1686,7 +1686,7 @@ static int vpfe_s_crop(struct file *file, void *priv,


static long vpfe_param_handler(struct file *file, void *priv,
bool valid_prio, int cmd, void *param)
bool valid_prio, unsigned int cmd, void *param)
{
struct vpfe_device *vpfe_dev = video_drvdata(file);
int ret = 0;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/media/radio/radio-si4713.c
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ static int radio_si4713_s_frequency(struct file *file, void *p,
}

static long radio_si4713_default(struct file *file, void *p,
bool valid_prio, int cmd, void *arg)
bool valid_prio, unsigned int cmd, void *arg)
{
return v4l2_device_call_until_err(get_v4l2_dev(file), 0, core,
ioctl, cmd, arg);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/media/solo6x10/solo6x10-v4l2-enc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1021,7 +1021,7 @@ static int solo_s_parm(struct file *file, void *priv,
}

static long solo_enc_default(struct file *file, void *fh,
bool valid_prio, int cmd, void *arg)
bool valid_prio, unsigned int cmd, void *arg)
{
struct solo_enc_dev *solo_enc = video_drvdata(file);
struct solo_dev *solo_dev = solo_enc->solo_dev;
Expand Down
2 changes: 1 addition & 1 deletion trunk/include/media/v4l2-ioctl.h
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ struct v4l2_ioctl_ops {

/* For other private ioctls */
long (*vidioc_default) (struct file *file, void *fh,
bool valid_prio, int cmd, void *arg);
bool valid_prio, unsigned int cmd, void *arg);
};


Expand Down

0 comments on commit 1f45f63

Please sign in to comment.