aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/usb/uvc/uvc_v4l2.c
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2018-01-16 12:35:17 -0500
committerMauro Carvalho Chehab <mchehab@s-opensource.com>2018-02-23 02:17:17 -0500
commit1e304c47ef12d442ef02d94bdbaed8b1f0adec3c (patch)
tree462c105333725b01a4ae65f0a03a488dc88415ea /drivers/media/usb/uvc/uvc_v4l2.c
parentmedia: uvcvideo: Drop extern keyword in function declarations (diff)
downloadlinux-dev-1e304c47ef12d442ef02d94bdbaed8b1f0adec3c.tar.xz
linux-dev-1e304c47ef12d442ef02d94bdbaed8b1f0adec3c.zip
media: uvcvideo: Use kernel integer types
Replace the uint_{8,16,32} types with the corresponding native kernel types u{8,16,32}. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/usb/uvc/uvc_v4l2.c')
-rw-r--r--drivers/media/usb/uvc/uvc_v4l2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/usb/uvc/uvc_v4l2.c b/drivers/media/usb/uvc/uvc_v4l2.c
index 5ff6ca1fad2d..ed6dcef3debc 100644
--- a/drivers/media/usb/uvc/uvc_v4l2.c
+++ b/drivers/media/usb/uvc/uvc_v4l2.c
@@ -336,7 +336,7 @@ done:
static int uvc_v4l2_get_streamparm(struct uvc_streaming *stream,
struct v4l2_streamparm *parm)
{
- uint32_t numerator, denominator;
+ u32 numerator, denominator;
if (parm->type != stream->type)
return -EINVAL;