Commit 6179c472 authored by Randy Dunlap's avatar Randy Dunlap Committed by Linus Torvalds

[PATCH] zoran: fix printk format types

zoran: fix printk format types:

drivers/media/video/zoran_driver.c:3763: warning: long long unsigned int format, long unsigned int arg (arg 3)
drivers/media/video/zoran_driver.c:3775: warning: long long unsigned int format, long unsigned int arg (arg 3)
drivers/media/video/zoran_driver.c:4109: warning: long long unsigned int format, long unsigned int arg (arg 3)
Signed-off-by: default avatarRandy Dunlap <rddunlap@osdl.org>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent ce776473
...@@ -3759,7 +3759,7 @@ zoran_do_ioctl (struct inode *inode, ...@@ -3759,7 +3759,7 @@ zoran_do_ioctl (struct inode *inode,
v4l2_std_id *std = arg; v4l2_std_id *std = arg;
dprintk(3, KERN_DEBUG "%s: VIDIOC_S_STD - norm=0x%llx\n", dprintk(3, KERN_DEBUG "%s: VIDIOC_S_STD - norm=0x%llx\n",
ZR_DEVNAME(zr), *std); ZR_DEVNAME(zr), (unsigned long long)*std);
if (*std == V4L2_STD_PAL) if (*std == V4L2_STD_PAL)
norm = VIDEO_MODE_PAL; norm = VIDEO_MODE_PAL;
...@@ -3773,7 +3773,7 @@ zoran_do_ioctl (struct inode *inode, ...@@ -3773,7 +3773,7 @@ zoran_do_ioctl (struct inode *inode,
dprintk(1, dprintk(1,
KERN_ERR KERN_ERR
"%s: VIDIOC_S_STD - invalid norm 0x%llx\n", "%s: VIDIOC_S_STD - invalid norm 0x%llx\n",
ZR_DEVNAME(zr), *std); ZR_DEVNAME(zr), (unsigned long long)*std);
return -EINVAL; return -EINVAL;
} }
...@@ -4106,7 +4106,7 @@ zoran_do_ioctl (struct inode *inode, ...@@ -4106,7 +4106,7 @@ zoran_do_ioctl (struct inode *inode,
dprintk(3, dprintk(3,
KERN_DEBUG "%s: VIDIOC_QUERY_STD - std=0x%llx\n", KERN_DEBUG "%s: VIDIOC_QUERY_STD - std=0x%llx\n",
ZR_DEVNAME(zr), *std); ZR_DEVNAME(zr), (unsigned long long)*std);
if (*std == V4L2_STD_ALL || *std == V4L2_STD_NTSC || if (*std == V4L2_STD_ALL || *std == V4L2_STD_NTSC ||
*std == V4L2_STD_PAL || (*std == V4L2_STD_SECAM && *std == V4L2_STD_PAL || (*std == V4L2_STD_SECAM &&
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment