diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2007-07-20 15:30:32 +0200 |
---|---|---|
committer | Hans Verkuil <hverkuil@xs4all.nl> | 2007-07-20 15:30:32 +0200 |
commit | ed7f53117ffd06e00be81b95953fb3b619f0b162 (patch) | |
tree | 0201fd3a8a77d892bb2190bbd8f2cdfe88da7ff1 /linux/drivers/media/video | |
parent | 4c8bd6a5bd9db9d363f2b49a6092af8f70cc8f2c (diff) | |
download | mediapointer-dvb-s2-ed7f53117ffd06e00be81b95953fb3b619f0b162.tar.gz mediapointer-dvb-s2-ed7f53117ffd06e00be81b95953fb3b619f0b162.tar.bz2 |
ivtv-fb: Use proper ioctl value.
From: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Diffstat (limited to 'linux/drivers/media/video')
-rw-r--r-- | linux/drivers/media/video/ivtv/ivtv-fb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linux/drivers/media/video/ivtv/ivtv-fb.c b/linux/drivers/media/video/ivtv/ivtv-fb.c index 01cd65328..55265bd5c 100644 --- a/linux/drivers/media/video/ivtv/ivtv-fb.c +++ b/linux/drivers/media/video/ivtv/ivtv-fb.c @@ -424,10 +424,10 @@ static int ivtvfb_ioctl(struct fb_info *info, unsigned int cmd, unsigned long ar finish_wait(&itv->vsync_waitq, &wait); return rc; - case IVTVFB_IOCTL_PREP_FRAME: { - struct ivtvfb_ioctl_dma_host_to_ivtv_args args; + case IVTVFB_IOC_DMA_FRAME: { + struct ivtvfb_dma_frame args; - IVTV_FB_DEBUG_INFO("IVTVFB_IOCTL_PREP_FRAME\n"); + IVTV_FB_DEBUG_INFO("IVTVFB_IOC_DMA_FRAME\n"); if (copy_from_user(&args, (void __user *)arg, sizeof(args))) return -EFAULT; |