diff options
author | Joe Perches <joe@perches.com> | 2015-05-16 15:11:40 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-07-06 08:25:50 -0300 |
commit | 9aee1ae3312daf0de4c9c614680d06d557133317 (patch) | |
tree | 7d1c86c50ade0f1121c12932ed5bc50fa9e35c2d /include | |
parent | 1b3b384177b2de010833fefffac6af3d6ffbdfed (diff) |
[media] media: uapi: vsp1: Use __u32 instead of u32
Don't use the kernel types in uapi headers.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/uapi/linux/vsp1.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/uapi/linux/vsp1.h b/include/uapi/linux/vsp1.h index e18858f6e865..9a823696d816 100644 --- a/include/uapi/linux/vsp1.h +++ b/include/uapi/linux/vsp1.h @@ -28,7 +28,7 @@ _IOWR('V', BASE_VIDIOC_PRIVATE + 1, struct vsp1_lut_config) struct vsp1_lut_config { - u32 lut[256]; + __u32 lut[256]; }; #endif /* __VSP1_USER_H__ */ |