]> Git Repo - linux.git/commitdiff
drm: rename u32 in __u32 in uapi
authorLionel Landwerlin <[email protected]>
Thu, 24 Aug 2017 15:08:14 +0000 (16:08 +0100)
committerDaniel Stone <[email protected]>
Fri, 25 Aug 2017 09:07:30 +0000 (10:07 +0100)
All other fields use __

Cc: Ben Widawsky <[email protected]>
Fixes: db1689aa61b ("drm: Create a format/modifier blob")
Signed-off-by: Lionel Landwerlin <[email protected]>
Signed-off-by: Daniel Stone <[email protected]>
Reviewed-by: Chris Wilson <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Reviewed-by: Ben Widawsky <[email protected]>
Reviewed-by: Daniel Stone <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
include/uapi/drm/drm_mode.h

index a2bb7161f0208d107a184e7c5b61dfc9355a7df4..54fc38c3c3f1dbd4cd65f188e5ce8f0d29cc194a 100644 (file)
@@ -715,24 +715,24 @@ struct drm_mode_atomic {
 struct drm_format_modifier_blob {
 #define FORMAT_BLOB_CURRENT 1
        /* Version of this blob format */
-       u32 version;
+       __u32 version;
 
        /* Flags */
-       u32 flags;
+       __u32 flags;
 
        /* Number of fourcc formats supported */
-       u32 count_formats;
+       __u32 count_formats;
 
        /* Where in this blob the formats exist (in bytes) */
-       u32 formats_offset;
+       __u32 formats_offset;
 
        /* Number of drm_format_modifiers */
-       u32 count_modifiers;
+       __u32 count_modifiers;
 
        /* Where in this blob the modifiers exist (in bytes) */
-       u32 modifiers_offset;
+       __u32 modifiers_offset;
 
-       /* u32 formats[] */
+       /* __u32 formats[] */
        /* struct drm_format_modifier modifiers[] */
 };
 
This page took 0.055539 seconds and 4 git commands to generate.