OSDN Git Service

drm_mode: fix types on recently added ioctls
authorDave Airlie <airlied@redhat.com>
Tue, 29 Mar 2011 20:11:21 +0000 (06:11 +1000)
committerDave Airlie <airlied@redhat.com>
Tue, 29 Mar 2011 20:11:21 +0000 (06:11 +1000)
include/drm/drm_mode.h

index 8b263ad..c7c1fbe 100644 (file)
@@ -346,14 +346,14 @@ struct drm_mode_crtc_page_flip {
 
 /* create a dumb scanout buffer */
 struct drm_mode_create_dumb {
-        uint32_t height;
-        uint32_t width;
-        uint32_t bpp;
-        uint32_t flags;
+        __u32 height;
+        __u32 width;
+        __u32 bpp;
+        __u32 flags;
         /* handle, pitch, size will be returned */
-        uint32_t handle;
-        uint32_t pitch;
-        uint64_t size;
+        __u32 handle;
+        __u32 pitch;
+        __u64 size;
 };
 
 /* set up for mmap of a dumb scanout buffer */
@@ -370,7 +370,7 @@ struct drm_mode_map_dumb {
 };
 
 struct drm_mode_destroy_dumb {
-       uint32_t handle;
+       __u32 handle;
 };
 
 #endif